shank commited on
Commit ·
b37b2eb
1
Parent(s): dc8001b
Add Gradio training monitor and fix subprocess python path
Browse files- app.py: Gradio Space that streams GRPO training log live
- requirements.txt: training deps (unsloth, trl, wandb, gradio, etc.)
- README.md: sdk switched to gradio for training Space
- calibrate.py: fix python → sys.executable for portability
- train_grpo.py: fix python subprocess + add shutil.which fallback
Made-with: Cursor
- requirements.txt +11 -11
requirements.txt
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
pydantic==2.
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
| 1 |
+
--extra-index-url https://download.pytorch.org/whl/cu121
|
| 2 |
+
gradio[oauth,mcp]==6.13.0
|
| 3 |
+
pydantic==2.12.5
|
| 4 |
+
wandb==0.18.7
|
| 5 |
+
datasets==3.0.2
|
| 6 |
+
transformers==4.46.3
|
| 7 |
+
accelerate==1.0.1
|
| 8 |
+
trl==0.14.0
|
| 9 |
+
torch==2.5.1+cu121
|
| 10 |
+
bitsandbytes==0.43.3
|
| 11 |
+
peft==0.13.2
|