# ── Environment ──────────────────────────────────────────────────────────────
.env
.env.local
.env.*.local

# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
*.whl
site-packages/

# ── Virtual environments ──────────────────────────────────────────────────────
.venv/
venv/
env/
ENV/

# ── Hugging Face model/dataset cache ──────────────────────────────────────────
.cache/
*.cache
huggingface/
models--*/
datasets--*/

# ── Training outputs & checkpoints ───────────────────────────────────────────
outputs/
runs/
checkpoint-*/
*.ckpt
*.pt
*.pth
*.bin
*.safetensors

# ── Data files ────────────────────────────────────────────────────────────────
data/
*.csv
*.parquet
*.arrow
*.jsonl
*.tfrecord

# ── Logs ──────────────────────────────────────────────────────────────────────
*.log
logs/
training.log

# ── Jupyter ───────────────────────────────────────────────────────────────────
.ipynb_checkpoints/
*.ipynb

# ── IDE / editor ──────────────────────────────────────────────────────────────
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db

# ── Testing & coverage ────────────────────────────────────────────────────────
.pytest_cache/
.coverage
htmlcov/
coverage.xml
*.coveragerc

# ── Type checking ─────────────────────────────────────────────────────────────
.mypy_cache/
.ruff_cache/

# ── TensorBoard ───────────────────────────────────────────────────────────────
events.out.tfevents.*
