Create .gitignore
Browse files- .gitignore +22 -0
.gitignore
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python temp files
|
| 2 |
+
__pycache__
|
| 3 |
+
*.pyc
|
| 4 |
+
*.pyo
|
| 5 |
+
*.pyd
|
| 6 |
+
*.pyc
|
| 7 |
+
*.db
|
| 8 |
+
|
| 9 |
+
# Model cache (3.5GB+ files)
|
| 10 |
+
/model_cache
|
| 11 |
+
|
| 12 |
+
# Gradio/Python environment
|
| 13 |
+
venv/
|
| 14 |
+
.env
|
| 15 |
+
*.log
|
| 16 |
+
|
| 17 |
+
# OS generated files
|
| 18 |
+
.DS_Store
|
| 19 |
+
Thumbs.db
|
| 20 |
+
|
| 21 |
+
# HuggingFace cache (if used)
|
| 22 |
+
.cache/
|