Include sentence embeddings
Browse files- .gitignore +7 -6
.gitignore
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
-
# Data files
|
| 2 |
-
data/*.pt
|
| 3 |
-
data/*.safetensors
|
| 4 |
-
data/*.bin
|
| 5 |
-
data/*.pdf
|
| 6 |
|
| 7 |
-
# Pipeline (exclude
|
| 8 |
pipeline/
|
| 9 |
pipeline/slurm/
|
| 10 |
pipeline/*.pt
|
|
@@ -14,6 +14,7 @@ pipeline/*.bin
|
|
| 14 |
# OS cruft
|
| 15 |
.DS_Store
|
| 16 |
|
|
|
|
| 17 |
frontend/paper/
|
| 18 |
|
| 19 |
# Dev tooling
|
|
|
|
| 1 |
+
# Data files - allow essential ML files, exclude large unnecessary files
|
| 2 |
+
# data/*.pt # Allow embedding files for ML inference
|
| 3 |
+
# data/*.safetensors # Allow model files for PaintingCLIP
|
| 4 |
+
data/*.bin # Exclude large binary files
|
| 5 |
+
data/*.pdf # Exclude PDF files
|
| 6 |
|
| 7 |
+
# Pipeline (exclude entire directory for Phase 1)
|
| 8 |
pipeline/
|
| 9 |
pipeline/slurm/
|
| 10 |
pipeline/*.pt
|
|
|
|
| 14 |
# OS cruft
|
| 15 |
.DS_Store
|
| 16 |
|
| 17 |
+
# Papers and examples (exclude large files)
|
| 18 |
frontend/paper/
|
| 19 |
|
| 20 |
# Dev tooling
|