Spaces:
Sleeping
Sleeping
Create .gitignore
Browse files- .gitignore +18 -0
.gitignore
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*.pyo
|
| 5 |
+
.env
|
| 6 |
+
venv/
|
| 7 |
+
.env.*
|
| 8 |
+
|
| 9 |
+
# Hugging Face / spaces
|
| 10 |
+
*.ckpt
|
| 11 |
+
*.pt
|
| 12 |
+
*.pth
|
| 13 |
+
model_weights/
|
| 14 |
+
data/
|
| 15 |
+
|
| 16 |
+
# system
|
| 17 |
+
.DS_Store
|
| 18 |
+
Thumbs.db
|