Update README for cleaned repo
Browse files
README.md
CHANGED
|
@@ -1,28 +1,30 @@
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
|
|
|
| 6 |
license: apache-2.0
|
| 7 |
---
|
| 8 |
|
| 9 |
# Training Scripts
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
-
##
|
| 14 |
|
| 15 |
-
|
| 16 |
-
|--------|---------|
|
| 17 |
-
| `train_sft_demo.py` | SFT on Capybara dataset |
|
| 18 |
-
| `train_concise.py` | SFT on concise-tech-explanations |
|
| 19 |
|
| 20 |
## Usage
|
| 21 |
|
| 22 |
```bash
|
| 23 |
-
hf jobs uv run
|
| 24 |
```
|
| 25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
## Notes
|
| 27 |
|
| 28 |
-
|
|
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
+
- fine-tuning
|
| 4 |
+
- lora
|
| 5 |
+
- humaneval
|
| 6 |
+
- qwen3
|
| 7 |
license: apache-2.0
|
| 8 |
---
|
| 9 |
|
| 10 |
# Training Scripts
|
| 11 |
|
| 12 |
+
Fine-tuning script for reproducing the HuggingFace fine-tuning challenge.
|
| 13 |
|
| 14 |
+
## Script
|
| 15 |
|
| 16 |
+
**train_humaneval_clean.py** - Fine-tune Qwen3-0.6B to beat base on HumanEval.
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
## Usage
|
| 19 |
|
| 20 |
```bash
|
| 21 |
+
hf jobs uv run --flavor a10g-small --timeout 14400 --secrets HF_TOKEN "https://huggingface.co/passagereptile455/training-scripts/resolve/main/train_humaneval_clean.py"
|
| 22 |
```
|
| 23 |
|
| 24 |
+
## Results
|
| 25 |
+
|
| 26 |
+
See [qwen3-humaneval-sft](https://huggingface.co/passagereptile455/qwen3-humaneval-sft) for the trained model and full results.
|
| 27 |
+
|
| 28 |
## Notes
|
| 29 |
|
| 30 |
+
Script uses PEP 723 inline dependencies - no local setup required.
|