Spaces:
Running
Running
Yebulabula
commited on
Commit
·
c7c8b35
1
Parent(s):
5168c63
complete_demo_app
Browse files- requirements.txt +12 -12
requirements.txt
CHANGED
|
@@ -1,19 +1,19 @@
|
|
| 1 |
# --- Core runtime ---
|
| 2 |
-
numpy
|
| 3 |
-
torch
|
| 4 |
-
safetensors
|
| 5 |
|
| 6 |
# --- Hugging Face stack (compatible pins) ---
|
| 7 |
-
transformers
|
| 8 |
-
huggingface_hub
|
| 9 |
-
accelerate
|
| 10 |
-
peft
|
| 11 |
-
sentencepiece
|
| 12 |
-
protobuf
|
| 13 |
|
| 14 |
# --- App / UI ---
|
| 15 |
-
gradio
|
| 16 |
-
plotly
|
| 17 |
|
| 18 |
# --- Nice-to-have for many HF vision/text models ---
|
| 19 |
-
timm
|
|
|
|
| 1 |
# --- Core runtime ---
|
| 2 |
+
numpy>=1.26.0,<2.0
|
| 3 |
+
torch>=2.2.0
|
| 4 |
+
safetensors>=0.4.2
|
| 5 |
|
| 6 |
# --- Hugging Face stack (compatible pins) ---
|
| 7 |
+
transformers==4.57.1 # requires huggingface_hub < 1.0
|
| 8 |
+
huggingface_hub==0.46.1
|
| 9 |
+
accelerate>=0.34.0,<0.36
|
| 10 |
+
peft==0.11.1
|
| 11 |
+
sentencepiece>=0.1.99
|
| 12 |
+
protobuf<4.0.0
|
| 13 |
|
| 14 |
# --- App / UI ---
|
| 15 |
+
gradio>=4.44,<5.0
|
| 16 |
+
plotly>=5.22.0,<6.0
|
| 17 |
|
| 18 |
# --- Nice-to-have for many HF vision/text models ---
|
| 19 |
+
timm>=0.9.12
|