feat: comprehensive .gitignore for model files and large data
Browse files- .gitignore +34 -10
.gitignore
CHANGED
@@ -1,10 +1,36 @@
|
|
1 |
-
# Model files and checkpoints
|
2 |
smollm*_adapter/
|
3 |
smollm3_robust/
|
|
|
|
|
|
|
|
|
|
|
4 |
*.bin
|
5 |
*.safetensors
|
6 |
*.pt
|
7 |
*.pth
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
# Python cache
|
10 |
__pycache__/
|
@@ -47,10 +73,6 @@ venv.bak/
|
|
47 |
*.swo
|
48 |
*~
|
49 |
|
50 |
-
# Logs
|
51 |
-
logs/
|
52 |
-
*.log
|
53 |
-
|
54 |
# Test results
|
55 |
test_results.json
|
56 |
|
@@ -59,9 +81,11 @@ test_results.json
|
|
59 |
|
60 |
# Temporary files
|
61 |
tmp/
|
62 |
-
temp/
|
63 |
-
|
64 |
-
|
65 |
-
smollm3_robust/
|
66 |
-
mlruns/
|
67 |
.specstory/
|
|
|
|
|
|
|
|
|
|
1 |
+
# Model files and checkpoints - COMPREHENSIVE
|
2 |
smollm*_adapter/
|
3 |
smollm3_robust/
|
4 |
+
smollm3_intensive/
|
5 |
+
checkpoint-*/
|
6 |
+
checkpoints/
|
7 |
+
runs/
|
8 |
+
outputs/
|
9 |
*.bin
|
10 |
*.safetensors
|
11 |
*.pt
|
12 |
*.pth
|
13 |
+
*.ckpt
|
14 |
+
*.h5
|
15 |
+
*.pkl
|
16 |
+
*.joblib
|
17 |
+
|
18 |
+
# TensorBoard and training logs
|
19 |
+
tensorboard/
|
20 |
+
tb_logs/
|
21 |
+
lightning_logs/
|
22 |
+
mlruns/
|
23 |
+
wandb/
|
24 |
+
logs/
|
25 |
+
*.log
|
26 |
+
|
27 |
+
# Large data files
|
28 |
+
*.jsonl
|
29 |
+
*.csv
|
30 |
+
*.tsv
|
31 |
+
*.parquet
|
32 |
+
*.arrow
|
33 |
+
*.feather
|
34 |
|
35 |
# Python cache
|
36 |
__pycache__/
|
|
|
73 |
*.swo
|
74 |
*~
|
75 |
|
|
|
|
|
|
|
|
|
76 |
# Test results
|
77 |
test_results.json
|
78 |
|
|
|
81 |
|
82 |
# Temporary files
|
83 |
tmp/
|
84 |
+
temp/
|
85 |
+
|
86 |
+
# Spec story and large documentation
|
|
|
|
|
87 |
.specstory/
|
88 |
+
|
89 |
+
# Backup files
|
90 |
+
*.backup
|
91 |
+
*.bak
|