Spaces:
Running
on
Zero
Running
on
Zero
Update requirements.txt
Browse files- requirements.txt +29 -6
requirements.txt
CHANGED
@@ -1,6 +1,29 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core Deep Learning
|
2 |
+
torch>=2.0.0
|
3 |
+
transformers>=4.35.0
|
4 |
+
accelerate>=0.24.0
|
5 |
+
|
6 |
+
# NLP and Language Processing
|
7 |
+
sentence-transformers>=2.2.2
|
8 |
+
langdetect>=1.0.9
|
9 |
+
|
10 |
+
# Vector Database
|
11 |
+
faiss-cpu>=1.7.4
|
12 |
+
# Use faiss-gpu instead if you have GPU support
|
13 |
+
# faiss-gpu>=1.7.4
|
14 |
+
|
15 |
+
# Data Processing
|
16 |
+
numpy>=1.24.0
|
17 |
+
pandas>=2.0.0
|
18 |
+
scikit-learn>=1.3.0
|
19 |
+
matplotlib>=3.7.0
|
20 |
+
|
21 |
+
# PDF Processing
|
22 |
+
PyPDF2>=3.0.0
|
23 |
+
|
24 |
+
# UI
|
25 |
+
gradio>=4.0.0
|
26 |
+
|
27 |
+
# Utilities
|
28 |
+
tqdm>=4.65.0
|
29 |
+
requests>=2.31.0
|