Spaces:
Sleeping
Sleeping
Upload .gitignore
Browse files- .gitignore +37 -0
.gitignore
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# =======================================
|
| 2 |
+
# Hugging Face & Model Cache
|
| 3 |
+
# =======================================
|
| 4 |
+
.cache/
|
| 5 |
+
hf_cache/
|
| 6 |
+
data/
|
| 7 |
+
|
| 8 |
+
# NLTK data
|
| 9 |
+
nltk_data/
|
| 10 |
+
|
| 11 |
+
# =======================================
|
| 12 |
+
# Streamlit
|
| 13 |
+
# =======================================
|
| 14 |
+
.streamlit/
|
| 15 |
+
.streamlit/*
|
| 16 |
+
|
| 17 |
+
# =======================================
|
| 18 |
+
# Python artifacts
|
| 19 |
+
# =======================================
|
| 20 |
+
__pycache__/
|
| 21 |
+
*.pyc
|
| 22 |
+
*.pyo
|
| 23 |
+
*.pyd
|
| 24 |
+
|
| 25 |
+
# =======================================
|
| 26 |
+
# Logs & temporary files
|
| 27 |
+
# =======================================
|
| 28 |
+
*.log
|
| 29 |
+
tmp/
|
| 30 |
+
*.tmp/
|
| 31 |
+
*.sqlite3
|
| 32 |
+
*.db
|
| 33 |
+
|
| 34 |
+
# =======================================
|
| 35 |
+
# Matplotlib cache
|
| 36 |
+
# =======================================
|
| 37 |
+
matplotlib/
|