-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (51 loc) · 1.03 KB
/
Copy path.gitignore
File metadata and controls
57 lines (51 loc) · 1.03 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
# Python caches and local environments
__pycache__/
*.py[cod]
.pytest_cache/
.mypy_cache/
.venv/
venv/
env/
.env
# Notebook, editor, and operating-system files
.ipynb_checkpoints/
.vscode/
.idea/
.DS_Store
Thumbs.db
# Downloaded, processed, cached, or shifted data
data/
models/
checkpoints/
*.pkl
*.pickle
# Benchmark outputs and logs. These remain available locally but are not
# source-controlled or pushed to GitHub.
results/
reports/
*.jsonl
*.log
*.db
# Reproducible scratch and legacy artifacts
scratch/
progress.md
test_out.txt
# LaTeX auxiliary files; the manuscript source and publication PDFs remain
# trackable under paper/.
paper/*.aux
paper/*.bbl
paper/*.bcf
paper/*.blg
paper/*.fdb_latexmk
paper/*.fls
paper/*.log
paper/*.out
paper/*.run.xml
paper/*.toc
paper/manuscript.pdf
# Raster previews are generated from the publication PDFs and are not needed
# in the paper package. The PDF figures in paper/figures/ are intentional
# submission assets and remain trackable.
paper/figures/*.png
paper/figures/*.jpg
paper/figures/*.jpeg