Spaces:
Sleeping
Sleeping
Agregar requirements.txt para instalar librerías
Browse files- .gitignore +6 -0
- pip +0 -0
- requirements.txt +8 -0
.gitignore
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
venv/
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
.DS_Store
|
| 5 |
+
.env
|
| 6 |
+
.ipynb_checkpoints/
|
pip
ADDED
|
File without changes
|
requirements.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio>=3.52
|
| 2 |
+
transformers==4.35.0
|
| 3 |
+
torch==2.1.0
|
| 4 |
+
torchvision==0.16.0
|
| 5 |
+
timm==0.9.8
|
| 6 |
+
pillow==9.5.0
|
| 7 |
+
huggingface-hub==0.17.5
|
| 8 |
+
|