XcodeAddy commited on
Commit
2bd0413
·
1 Parent(s): 65691ca

Keep baseline artifacts trackable

Browse files
Files changed (1) hide show
  1. .gitignore +88 -7
.gitignore CHANGED
@@ -1,14 +1,95 @@
1
  .DS_Store
 
 
 
 
 
 
 
 
 
 
 
2
  __pycache__/
3
- *.py[cod]
4
- .pytest_cache/
5
- .mypy_cache/
6
- .ruff_cache/
 
 
 
 
 
 
 
7
  .venv/
 
 
 
 
 
 
8
  outputs/*
9
  !outputs/baseline_comparison.png
10
  !outputs/baseline_scores.json
11
  !outputs/evaluation_results.json
12
- .env
13
- .env.*
14
- !.env.example
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  .DS_Store
2
+ # =========================
3
+ # ENV AND SECRETS
4
+ # =========================
5
+ .env
6
+ .env.*
7
+ *.env
8
+ !.env.example
9
+
10
+ # =========================
11
+ # PYTHON
12
+ # =========================
13
  __pycache__/
14
+ *.pyc
15
+ *.pyo
16
+ *.pyd
17
+ *.pyc.*
18
+ *.egg-info/
19
+ dist/
20
+ build/
21
+ .eggs/
22
+ *.egg
23
+ venv/
24
+ env/
25
  .venv/
26
+
27
+ # =========================
28
+ # LOG FILES
29
+ # =========================
30
+ *.log
31
+ logs.jsonl
32
  outputs/*
33
  !outputs/baseline_comparison.png
34
  !outputs/baseline_scores.json
35
  !outputs/evaluation_results.json
36
+
37
+ # =========================
38
+ # OS FILES
39
+ # =========================
40
+ .DS_Store
41
+ Thumbs.db
42
+
43
+ # =========================
44
+ # IDE / EDITOR
45
+ # =========================
46
+ .vscode/
47
+ .idea/
48
+ *.swp
49
+ *.swo
50
+
51
+ # =========================
52
+ # MODEL / DATA FILES
53
+ # =========================
54
+ *.onnx
55
+ *.pt
56
+ *.pth
57
+ *.ckpt
58
+ *.h5
59
+
60
+ # Large datasets (customize if needed)
61
+ data/
62
+ datasets/
63
+
64
+ # =========================
65
+ # BUILD / OUTPUT
66
+ # =========================
67
+ dist/
68
+ build/
69
+ out/
70
+
71
+ # =========================
72
+ # TEMP FILES
73
+ # =========================
74
+ *.tmp
75
+ *.temp
76
+ .cache/
77
+ .pycache/
78
+
79
+ # =========================
80
+ # TEST / COVERAGE
81
+ # =========================
82
+ coverage/
83
+ .nyc_output/
84
+
85
+ # =========================
86
+ # DOCKER (optional)
87
+ # =========================
88
+ *.pid
89
+ *.seed
90
+
91
+ # =========================
92
+ # MISC
93
+ # =========================
94
+ *.bak
95
+ *.old