# --- VCS --- .git .git/* .gitignore .gitattributes # --- Python bytecode & caches --- __pycache__/ *.py[cod] *.pyo *.so *.dylib .pytest_cache/ .mypy_cache/ .ruff_cache/ .coverage .coverage.* htmlcov/ # --- Virtual envs & local config --- .venv/ venv/ .env .env.* *.log *.tmp *.db # --- OS/editor junk --- .DS_Store Thumbs.db .idea/ .vscode/ # --- Large data / artifacts (exclude everywhere, any depth) --- **/data/ **/results/ **/logs/ **/exports/ **/hf-cache/ **/checkpoints/ **/wandb/ **/wandb_logs/ **/app/demo/uploads/ **/app/demo/exports/ # --- Model weights & archives --- *.pt *.pth *.ckpt *.safetensors *.npz *.npy *.zip *.tar *.tar.gz # --- Build outputs --- build/ dist/ .eggs/ *.egg-info/ # --- Not needed in the runtime image (optional) --- tests/ notebooks/ docs/