Spaces:
Runtime error
Runtime error
Update .gitignore
Browse files- .gitignore +13 -5
.gitignore
CHANGED
|
@@ -5,23 +5,31 @@ __pycache__/
|
|
| 5 |
.env
|
| 6 |
*.log
|
| 7 |
|
| 8 |
-
#
|
|
|
|
|
|
|
|
|
|
| 9 |
.DS_Store
|
| 10 |
Thumbs.db
|
| 11 |
|
| 12 |
-
# llama.cpp build
|
| 13 |
llama.cpp/build/
|
| 14 |
llama.cpp/server
|
| 15 |
llama.cpp/ggml*
|
| 16 |
llama.cpp/*.bin
|
| 17 |
|
| 18 |
-
#
|
| 19 |
*.gguf
|
| 20 |
/models/
|
| 21 |
*.pth
|
| 22 |
*.ckpt
|
| 23 |
|
| 24 |
-
#
|
| 25 |
*.zip
|
| 26 |
*.tar
|
| 27 |
-
*.tar.gz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
.env
|
| 6 |
*.log
|
| 7 |
|
| 8 |
+
# Jupyter Notebook checkpoints
|
| 9 |
+
.ipynb_checkpoints/
|
| 10 |
+
|
| 11 |
+
# OS / system files
|
| 12 |
.DS_Store
|
| 13 |
Thumbs.db
|
| 14 |
|
| 15 |
+
# llama.cpp build artifacts and binaries
|
| 16 |
llama.cpp/build/
|
| 17 |
llama.cpp/server
|
| 18 |
llama.cpp/ggml*
|
| 19 |
llama.cpp/*.bin
|
| 20 |
|
| 21 |
+
# Model files and caches (large files)
|
| 22 |
*.gguf
|
| 23 |
/models/
|
| 24 |
*.pth
|
| 25 |
*.ckpt
|
| 26 |
|
| 27 |
+
# Archive files
|
| 28 |
*.zip
|
| 29 |
*.tar
|
| 30 |
+
*.tar.gz
|
| 31 |
+
*.rar
|
| 32 |
+
*.7z
|
| 33 |
+
|
| 34 |
+
# Others
|
| 35 |
+
*.log
|