-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
82 lines (67 loc) · 2.34 KB
/
Copy path.gitignore
File metadata and controls
82 lines (67 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# OS / editor junk
.DS_Store
Thumbs.db
.vscode/
# Python
__pycache__/
*.py[cod]
*.pyd
.Python
.pytest_cache/
.mypy_cache/
.ruff_cache/
.ipynb_checkpoints/
# Virtual environments
.venv/
venv/
ENV/
env/
# Local scratch / archives
.archive/
**/.archive/
# Local paper and planning drafts used during repo preparation
_NeurIPS__26__Evaluation___Dataset_Track/
Dataset_Doc_Personalization*.md
# Jupyter / EDA generated artifacts
*.html
*.xlsx
*.csv
*.pkl
*.png
*.pdf
*.txt
*.json
# ──────────────────────────────────────────────────────────────────────────────
# Carve-outs: documentation assets and committed result templates we DO track.
# These whitelist entries must come AFTER the wildcard ignores above.
# ──────────────────────────────────────────────────────────────────────────────
# Figures referenced by README.md, DATASHEET.md, and docs/*
!images/
!images/*.png
# Integrity hashes for the Dataverse archives
!metadata/checksums.md5
# Benchmark result CSV / JSON templates (see benchmark/results/README.md)
!benchmark/results/
!benchmark/results/*.csv
!benchmark/results/*.json
# ──────────────────────────────────────────────────────────────────────────────
# Benchmark / experiment outputs (keep code, ignore outputs)
# ──────────────────────────────────────────────────────────────────────────────
basemodel-benchmarking/**/basemodel_benchmark_outputs/
basemodel-benchmarking/**/runs/
basemodel-benchmarking/**/latest/
# Dataset files (downloaded locally; tracked docs live in data/)
data/D1/
data/D2/
data/D3/
data/full/
data/processed/
# Symlinked or staged data pickles at data/ root
data/*.pkl
# Local smoke / experiment outputs at repo root
results/
# Local logs, lightning artefacts, model snapshots
logs/
lightning_logs/
saved_models/
.pt_tmp/