summaryrefslogtreecommitdiff
path: root/.gitignore
blob: 3b3778875902b49fb9b4e3565fdfdd04bcc70c48 (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
# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/

# Data & model artifacts
cache/
*.pt
*.bin
*.safetensors
*.ckpt

# Outputs (large prediction files)
outputs/**/*predictions*.json

# Environment
.env
*.log

# IDE
.vscode/
.idea/

# OS
.DS_Store
Thumbs.db