b30f4c188b
Removed checkpoints/*.pt from .gitignore; files are now stored as LFS objects (pretrained.pt 17 MB, finetuned.pt 17 MB). LFS attributes were already in place in .gitattributes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
61 lines
613 B
Plaintext
61 lines
613 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 tracked via Git LFS (see .gitattributes)
|
|
|
|
# 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
|