WSLINMSAI commited on
Commit
06e5300
·
verified ·
1 Parent(s): d3e2df8

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +10 -7
requirements.txt CHANGED
@@ -1,12 +1,15 @@
1
- # For fuzzy matching
2
  fuzzywuzzy==0.18.0
3
 
4
- # For Hugging Face Hub
5
- huggingface_hub==0.25.2
6
-
7
- # For using a transformer model
8
  transformers==4.31.0
9
  torch==2.0.1
10
 
11
- # Numpy
12
- numpy==1.23.5
 
 
 
 
 
 
 
1
+ # For fuzzy matching (or use rapidfuzz if preferred)
2
  fuzzywuzzy==0.18.0
3
 
4
+ # For Hugging Face Transformers
 
 
 
5
  transformers==4.31.0
6
  torch==2.0.1
7
 
8
+ # For numeric computations used by transformers
9
+ numpy==1.23.5
10
+
11
+ # For Gradio
12
+ gradio==3.39.0
13
+
14
+ # Referencing huggingface_hub
15
+ huggingface_hub==0.25.2