Create requirements.txt
Browse filesAdd initial requirements.txt for dependencies.
- requirements.txt +14 -0
requirements.txt
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python version
|
2 |
+
python==3.9.7
|
3 |
+
|
4 |
+
# General dependencies
|
5 |
+
numpy==1.21.2
|
6 |
+
pandas==1.3.5
|
7 |
+
scikit-learn==1.0.2
|
8 |
+
torch==1.10.0
|
9 |
+
transformers==4.17.0
|
10 |
+
|
11 |
+
# Gradio dependencies
|
12 |
+
gradio==3.0.2
|
13 |
+
|
14 |
+
# Other dependencies (add as needed)
|