-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
43 lines (39 loc) · 1.02 KB
/
Copy path.gitignore
File metadata and controls
43 lines (39 loc) · 1.02 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
# Benchmark datasets are downloaded/extracted locally, never committed.
# Anchored to the repo root: an unanchored "data/" also swallows new files
# under src/tacet/data/ (silently dropped from commits).
/data/
.venv/
__pycache__/
*.pyc
*.egg-info/
.pytest_cache/
.ruff_cache/
*.egg-info
# Paper build artifacts — only the source under paper/ is committed.
paper/build/
paper/*.pdf
paper/*.aux
paper/*.log
paper/*.out
paper/*.bbl
paper/*.blg
# Secrets / credentials — never commit (defense-in-depth).
.env
*.key
*.pem
experiments/results/raw.json
experiments/results/*_pilot.json
# analyze.py convenience dump (derived; not consumed by the paper)
digest.json
# transient experiment-run scratch (tee logs, per-seed partial dumps)
experiments/results/_*
experiments/results/privaci_matrix_partial_*.json
# Local run logs (transient; the JSON artifacts next to them are the record)
experiments/results/*.log
# Astro site build output and deps
site/dist/
site/node_modules/
site/.astro/
site/public/paper/
paper/figures/*.png
paper-html/