Spaces:
Sleeping
Sleeping
Lucas Gagneten commited on
Commit 路
43fda59
1
Parent(s): 2c6746f
add gitignore file
Browse files- .gitignore +44 -0
.gitignore
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Entornos virtuales
|
| 2 |
+
venv/
|
| 3 |
+
.env
|
| 4 |
+
|
| 5 |
+
# Archivos temporales y de sistema
|
| 6 |
+
__pycache__/
|
| 7 |
+
*.py[cod]
|
| 8 |
+
*.log
|
| 9 |
+
*.tmp
|
| 10 |
+
|
| 11 |
+
# Archivos de configuraci贸n local
|
| 12 |
+
*.db
|
| 13 |
+
*.sqlite3
|
| 14 |
+
|
| 15 |
+
# Datos y resultados
|
| 16 |
+
data/
|
| 17 |
+
*.csv
|
| 18 |
+
*.tsv
|
| 19 |
+
*.json
|
| 20 |
+
*.xlsx
|
| 21 |
+
|
| 22 |
+
# Im谩genes y PDFs
|
| 23 |
+
*.png
|
| 24 |
+
*.jpg
|
| 25 |
+
*.jpeg
|
| 26 |
+
*.pdf
|
| 27 |
+
|
| 28 |
+
# Modelos y checkpoints
|
| 29 |
+
checkpoints/
|
| 30 |
+
*.pt
|
| 31 |
+
*.pth
|
| 32 |
+
*.h5
|
| 33 |
+
|
| 34 |
+
# Archivos de anotaci贸n
|
| 35 |
+
annotations/
|
| 36 |
+
*.xml
|
| 37 |
+
*.txt
|
| 38 |
+
|
| 39 |
+
# Gradio y Hugging Face Spaces
|
| 40 |
+
gradio/
|
| 41 |
+
*.gradio
|
| 42 |
+
|
| 43 |
+
# Otros
|
| 44 |
+
.DS_Store
|