selvaonline commited on
Commit
454bded
·
verified ·
1 Parent(s): a6565d8

Upload requirements.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. requirements.txt +15 -2
requirements.txt CHANGED
@@ -1,7 +1,20 @@
1
-
2
  transformers>=4.30.0
3
  torch>=2.0.0
4
  numpy>=1.24.0
5
  huggingface-hub>=0.16.0
6
- gradio>=3.50.0
 
 
 
 
 
 
 
7
  requests>=2.31.0
 
 
 
 
 
 
 
1
+ # Core dependencies for using the model
2
  transformers>=4.30.0
3
  torch>=2.0.0
4
  numpy>=1.24.0
5
  huggingface-hub>=0.16.0
6
+
7
+ # For sentence transformers and semantic search
8
+ sentence-transformers>=2.2.2
9
+
10
+ # For zero-shot classification
11
+ accelerate>=0.20.0
12
+
13
+ # For demo scripts
14
  requests>=2.31.0
15
+
16
+ # For Gradio demo
17
+ gradio>=3.50.0
18
+
19
+ # For deployment
20
+ tqdm>=4.66.0