Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,20 +1,29 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
colorFrom: pink
|
| 5 |
-
colorTo:
|
| 6 |
sdk: docker
|
| 7 |
-
app_port:
|
| 8 |
fullWidth: true
|
| 9 |
hf_oauth: true
|
| 10 |
tags:
|
| 11 |
-
-
|
|
|
|
|
|
|
|
|
|
| 12 |
pinned: true
|
| 13 |
license: mit
|
| 14 |
---
|
| 15 |
-
Argilla is a free and open source tool to build and iterate on datasets for AI. It can be deployed on the Hub with a few clicks and Hugging Face OAuth enabled, perfect for running community annotation initiatives!
|
| 16 |
|
| 17 |
-
This
|
| 18 |
|
| 19 |
-
|
| 20 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: FineTunePipelineDocker
|
| 3 |
+
emoji: 🧪
|
| 4 |
colorFrom: pink
|
| 5 |
+
colorTo: purple
|
| 6 |
sdk: docker
|
| 7 |
+
app_port: 7860
|
| 8 |
fullWidth: true
|
| 9 |
hf_oauth: true
|
| 10 |
tags:
|
| 11 |
+
- transformers
|
| 12 |
+
- finetuning
|
| 13 |
+
- peft
|
| 14 |
+
- gradio
|
| 15 |
pinned: true
|
| 16 |
license: mit
|
| 17 |
---
|
|
|
|
| 18 |
|
| 19 |
+
This Space runs a lightweight fine-tuning pipeline inside a Docker container.
|
| 20 |
|
| 21 |
+
What it does:
|
| 22 |
+
- Downloads a dataset from the Hub (default: `karpathy/tiny_shakespeare`)
|
| 23 |
+
- Fine-tunes a small model with LoRA (default base model: `sshleifer/tiny-gpt2`)
|
| 24 |
+
- Saves the trained adapter + tokenizer as artifacts
|
| 25 |
+
- Provides a simple text generation UI for testing
|
| 26 |
+
|
| 27 |
+
Notes:
|
| 28 |
+
- `app_port` must match the port your container listens on (default is 7860 for Docker Spaces).
|
| 29 |
+
- OAuth is enabled (`hf_oauth: true`) so you can optionally add “Sign in with HF” and push models on behalf of the user (requires scopes + implementation).
|