6bce48ddf4
Replace five narrow patterns (*.pt, *.pkl, train/, val/, holdout/) with a single data/processed/ rule that also covers data/processed/user/. All processed tensors are reproducible from committed .chord files. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
64 lines
673 B
Plaintext
64 lines
673 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# pytest
|
|
.pytest_cache/
|
|
.cache/
|
|
htmlcov/
|
|
.coverage
|
|
coverage.xml
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
*.ipynb_checkpoints
|
|
|
|
# Model checkpoints (large binaries — commit only intentionally)
|
|
checkpoints/*.pt
|
|
checkpoints/*.pth
|
|
checkpoints/*.ckpt
|
|
|
|
# Processed data (reproducible from source)
|
|
data/processed/
|
|
|
|
# External corpora (download separately; too large for git)
|
|
data/raw_external/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# IDEs
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Generated output
|
|
output/
|
|
|
|
# Misc
|
|
*.tmp
|
|
*.bak
|