Spaces:
Sleeping
Sleeping
YanBoChen
commited on
Commit
·
2e1a43b
1
Parent(s):
775f8ea
refactor(.gitignore): reorganize and expand ignored files for clarity and completeness
Browse files- .gitignore +25 -6
.gitignore
CHANGED
@@ -1,13 +1,32 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
#virtual environment
|
4 |
genAIvenv/
|
5 |
.final_project_env/
|
6 |
|
|
|
|
|
|
|
7 |
|
8 |
-
|
9 |
-
|
10 |
docs/
|
11 |
-
|
12 |
|
|
|
13 |
*.pyc
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# 🧠 Virtual environments
|
|
|
|
|
2 |
genAIvenv/
|
3 |
.final_project_env/
|
4 |
|
5 |
+
# 💻 OS / Editor garbage
|
6 |
+
.DS_Store
|
7 |
+
.vscode/
|
8 |
|
9 |
+
# 📁 Documentation and project folders
|
|
|
10 |
docs/
|
11 |
+
dataset/dataset/
|
12 |
|
13 |
+
# 🧾 Compiled / output files
|
14 |
*.pyc
|
15 |
+
*.log
|
16 |
+
*.zip
|
17 |
+
*.tar.gz
|
18 |
+
*.mp4
|
19 |
+
*.mov
|
20 |
+
|
21 |
+
# 🚫 Large files - models
|
22 |
+
models/cache/
|
23 |
+
models/cache/*.pkl
|
24 |
+
models/embeddings/*.npy
|
25 |
+
models/embeddings/*.json
|
26 |
+
models/indices/
|
27 |
+
models/indices/annoy/*.ann
|
28 |
+
|
29 |
+
# 🚫 Redundant catch-all for large file extensions
|
30 |
+
*.pkl
|
31 |
+
*.npy
|
32 |
+
*.ann
|