| # secrets — NEVER commit | |
| .env | |
| .env.* | |
| !.env.example | |
| # data + model artifacts (published to HF Hub, not committed) | |
| # NOTE: anchored to repo root so they do NOT match the src/mathcompose/data/ package. | |
| /data/ | |
| /runs/ | |
| *.safetensors | |
| *.bin | |
| # python | |
| __pycache__/ | |
| *.pyc | |
| .pytest_cache/ | |
| *.egg-info/ | |
| .ipynb_checkpoints/ | |
| .venv/ | |
| venv/ | |
| # keep results tables committed | |
| !results/ | |