Upload requirements.txt
Browse files- requirements.txt +24 -0
requirements.txt
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --- Core Application ---
|
| 2 |
+
streamlit>=1.30.0
|
| 3 |
+
|
| 4 |
+
# --- AI & Deep Learning (CPU Friendly Default) ---
|
| 5 |
+
# Pinned versions ensure the code doesn't break with future updates
|
| 6 |
+
torch>=2.1.0
|
| 7 |
+
transformers>=4.36.0
|
| 8 |
+
accelerate>=0.26.0
|
| 9 |
+
|
| 10 |
+
# --- Data Handling & API ---
|
| 11 |
+
huggingface_hub>=0.20.0
|
| 12 |
+
datasets>=2.16.0
|
| 13 |
+
pandas>=2.1.0
|
| 14 |
+
scikit-learn>=1.3.0
|
| 15 |
+
|
| 16 |
+
# --- Visualization ---
|
| 17 |
+
plotly>=5.18.0
|
| 18 |
+
scipy>1.10.0
|
| 19 |
+
# --- Utilities ---
|
| 20 |
+
# specific encoding fix for some Windows environments
|
| 21 |
+
# charset-normalizer>=3.3.0
|
| 22 |
+
|
| 23 |
+
bitsandbytes>=0.41.0
|
| 24 |
+
networkx>=3.0
|