Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +8 -22
requirements.txt
CHANGED
|
@@ -1,23 +1,9 @@
|
|
| 1 |
-
#
|
| 2 |
-
|
| 3 |
torch>=2.0.0
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
huggingface_hub>=0.34.0 # Hugging Face Hub integration
|
| 11 |
-
accelerate>=0.20.0 # Distributed training acceleration
|
| 12 |
-
|
| 13 |
-
# User Interface - Gradio for web-based training interface
|
| 14 |
-
gradio>=4.0.0 # Web UI framework for ML applications
|
| 15 |
-
|
| 16 |
-
# Data Processing and Utilities
|
| 17 |
-
numpy>=1.24.0 # Numerical computing library
|
| 18 |
-
pandas>=2.0.0 # Data manipulation and analysis
|
| 19 |
-
tqdm>=4.65.0 # Progress bars for long-running operations
|
| 20 |
-
psutil>=5.9.0 # System and process utilities
|
| 21 |
-
|
| 22 |
-
# Note: These versions are compatible with Hugging Face Spaces
|
| 23 |
-
# and provide stable training performance
|
|
|
|
| 1 |
+
# Force latest Gradio version - NO CACHING
|
| 2 |
+
gradio==4.44.1
|
| 3 |
torch>=2.0.0
|
| 4 |
+
torchvision>=0.15.0
|
| 5 |
+
sentencepiece>=0.1.99
|
| 6 |
+
numpy>=1.21.0
|
| 7 |
+
typing-extensions>=4.0.0
|
| 8 |
+
huggingface_hub>=0.19.0
|
| 9 |
+
requests>=2.28.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|