Spaces:
Runtime error
Runtime error
Create requirements.txt
Browse files- requirements.txt +30 -0
requirements.txt
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
gradio>=4.0.0
|
3 |
+
torch>=2.0.0
|
4 |
+
transformers>=4.30.0
|
5 |
+
pandas>=2.0.0
|
6 |
+
numpy>=1.24.0
|
7 |
+
|
8 |
+
# NLP Tools
|
9 |
+
keybert>=0.7.0
|
10 |
+
yake>=0.4.8
|
11 |
+
textblob>=0.17.1
|
12 |
+
scikit-learn>=1.3.0
|
13 |
+
sentence-transformers>=2.2.2
|
14 |
+
|
15 |
+
# Visualization
|
16 |
+
matplotlib>=3.7.0
|
17 |
+
seaborn>=0.12.0
|
18 |
+
plotly>=5.14.0
|
19 |
+
|
20 |
+
# Image Processing
|
21 |
+
Pillow>=9.5.0
|
22 |
+
|
23 |
+
# Utilities
|
24 |
+
python-dateutil>=2.8.2
|
25 |
+
tqdm>=4.65.0
|
26 |
+
requests>=2.31.0
|
27 |
+
|
28 |
+
# Optional - for better performance
|
29 |
+
accelerate>=0.21.0
|
30 |
+
bitsandbytes>=0.41.0
|