Create requirements.txt
#10
by S-Dreamer - opened
- requirements.txt +31 -0
requirements.txt
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core Gradio & UI
|
| 2 |
+
gradio==4.44.0
|
| 3 |
+
|
| 4 |
+
# Transformers & Model Support
|
| 5 |
+
transformers==4.45.2
|
| 6 |
+
accelerate==0.34.2
|
| 7 |
+
torch==2.4.1
|
| 8 |
+
|
| 9 |
+
# Data Handling
|
| 10 |
+
datasets==3.0.1
|
| 11 |
+
pandas==2.2.3
|
| 12 |
+
numpy==1.26.4
|
| 13 |
+
|
| 14 |
+
# Hugging Face Integration
|
| 15 |
+
huggingface-hub==0.25.1
|
| 16 |
+
|
| 17 |
+
# Async Support
|
| 18 |
+
asyncio==3.4.3
|
| 19 |
+
aiohttp==3.10.5
|
| 20 |
+
|
| 21 |
+
# Additional Common Dependencies
|
| 22 |
+
sentencepiece==0.2.0
|
| 23 |
+
protobuf==5.28.2
|
| 24 |
+
safetensors==0.4.5
|
| 25 |
+
|
| 26 |
+
# Performance & Optimization
|
| 27 |
+
bitsandbytes==0.43.3
|
| 28 |
+
einops==0.8.0
|
| 29 |
+
|
| 30 |
+
# Utility
|
| 31 |
+
python-dotenv==1.0.1
|