S-Dreamer commited on
Commit
c97e054
·
verified ·
1 Parent(s): b614853

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -9
README.md CHANGED
@@ -1,20 +1,29 @@
1
  ---
2
- title: DockerTestingSpace
3
- emoji:
4
  colorFrom: pink
5
- colorTo: pink
6
  sdk: docker
7
- app_port: 6900
8
  fullWidth: true
9
  hf_oauth: true
10
  tags:
11
- - argilla
 
 
 
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 is the Argilla Space for:
18
 
19
- - Creating your own Argilla Spaces, check the [quickstart guide](http://docs.argilla.io/latest/getting_started/quickstart/) and the [Hugging Face Spaces configuration](http://docs.argilla.io/latest/getting_started/how-to-configure-argilla-on-huggingface/) for more details.
20
- - Discovering the Argilla UI, sign in with your Hugging Face account!
 
 
 
 
 
 
 
 
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).