summaryrefslogtreecommitdiff
path: root/.gitignore
blob: 6dd4b78b6d092da30669a23e6aacd2d56d3804ad (plain)
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
# Python
__pycache__/
*.py[cod]
*.pyo
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

# Virtual environments
.venv/
venv/
env/

# Jupyter
.ipynb_checkpoints/

# Experiment outputs
runs/
outputs/
artifacts/
checkpoints/
wandb/
tensorboard/

# Local literature scratch files
notes/lit_pdfs/

# Data
data/
datasets/

# OS and editor files
.DS_Store
Thumbs.db
.idea/
.vscode/

# Logs
*.log