Spaces:
Paused
Paused
correction
Browse files- .gitignore +19 -0
- README.md +1 -0
- app/__pycache__/voting.cpython-312.pyc +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Environnements virtuels
|
| 2 |
+
venv/
|
| 3 |
+
.venv/
|
| 4 |
+
env/
|
| 5 |
+
.env/
|
| 6 |
+
|
| 7 |
+
# Fichiers Python compilés
|
| 8 |
+
app/__pycache__/
|
| 9 |
+
*.pyc
|
| 10 |
+
|
| 11 |
+
# Fichiers système
|
| 12 |
+
.DS_Store
|
| 13 |
+
|
| 14 |
+
# Configurations IDE
|
| 15 |
+
.vscode/
|
| 16 |
+
.idea/
|
| 17 |
+
|
| 18 |
+
# Fichiers de logs
|
| 19 |
+
*.log
|
README.md
CHANGED
|
@@ -9,3 +9,4 @@ short_description: api de prediction
|
|
| 9 |
---
|
| 10 |
|
| 11 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
| 12 |
+
#lancement en local uvicorn app.main:app --host 0.0.0.0 --port 7860 --log-level debug
|
app/__pycache__/voting.cpython-312.pyc
CHANGED
|
Binary files a/app/__pycache__/voting.cpython-312.pyc and b/app/__pycache__/voting.cpython-312.pyc differ
|
|
|