Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,41 +1,50 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
-
|
| 13 |
-
|
| 14 |
-
##
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
```bash
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
title: Gemma FineTuner
|
| 4 |
+
sdk: gradio
|
| 5 |
+
emoji: 🔥
|
| 6 |
+
colorFrom: gray
|
| 7 |
+
colorTo: green
|
| 8 |
+
pinned: true
|
| 9 |
+
---
|
| 10 |
+
# Gemma Fine-tuning UI
|
| 11 |
+
|
| 12 |
+
A user-friendly interface for fine-tuning Google's Gemma models using Unsloth optimizations.
|
| 13 |
+
|
| 14 |
+
## Features
|
| 15 |
+
|
| 16 |
+
- Easy-to-use web interface for model fine-tuning
|
| 17 |
+
- Support for multiple data formats (CSV, JSONL, TEXT)
|
| 18 |
+
- Parameter-efficient fine-tuning with LoRA
|
| 19 |
+
- Real-time training progress visualization
|
| 20 |
+
- Model export in multiple formats
|
| 21 |
+
- Integrated text generation testing
|
| 22 |
+
|
| 23 |
+
## Installation
|
| 24 |
+
|
| 25 |
+
```bash
|
| 26 |
+
git clone https://github.com/codewithdark-git/Gemma-Finetune.git
|
| 27 |
+
cd Gemma-Finetune
|
| 28 |
+
pip install -r requirements.txt
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Usage
|
| 32 |
+
|
| 33 |
+
1. Run the application:
|
| 34 |
+
```bash
|
| 35 |
+
python main.py
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
2. Follow the UI steps:
|
| 39 |
+
- Upload your dataset
|
| 40 |
+
- Configure model parameters
|
| 41 |
+
- Start training
|
| 42 |
+
- Test and export your model
|
| 43 |
+
|
| 44 |
+
## Requirements
|
| 45 |
+
|
| 46 |
+
See requirements.txt for detailed dependencies.
|
| 47 |
+
|
| 48 |
+
## License
|
| 49 |
+
|
| 50 |
+
MIT License
|