Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +9 -9
requirements.txt
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
# Core dependencies for using the model
|
2 |
-
transformers
|
3 |
-
torch
|
4 |
-
numpy
|
5 |
-
huggingface-hub
|
6 |
|
7 |
# For sentence transformers and semantic search
|
8 |
-
sentence-transformers
|
9 |
|
10 |
# For zero-shot classification
|
11 |
-
accelerate
|
12 |
|
13 |
# For demo scripts
|
14 |
-
requests
|
15 |
|
16 |
# For Gradio demo
|
17 |
-
gradio
|
18 |
|
19 |
# For deployment
|
20 |
-
tqdm
|
|
|
1 |
# Core dependencies for using the model
|
2 |
+
transformers==4.36.2
|
3 |
+
torch==2.1.2
|
4 |
+
numpy==1.24.4
|
5 |
+
huggingface-hub==0.19.4
|
6 |
|
7 |
# For sentence transformers and semantic search
|
8 |
+
sentence-transformers==2.2.2
|
9 |
|
10 |
# For zero-shot classification
|
11 |
+
accelerate==0.25.0
|
12 |
|
13 |
# For demo scripts
|
14 |
+
requests==2.31.0
|
15 |
|
16 |
# For Gradio demo
|
17 |
+
gradio==4.19.0 # Updated to latest version for security
|
18 |
|
19 |
# For deployment
|
20 |
+
tqdm==4.66.1
|