| # ============================================================ | |
| # Python cache / compiled files | |
| # ============================================================ | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # ============================================================ | |
| # Virtual environments | |
| # ============================================================ | |
| .venv/ | |
| venv/ | |
| env/ | |
| ENV/ | |
| # ============================================================ | |
| # Python / test / notebook caches | |
| # ============================================================ | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| .ipynb_checkpoints/ | |
| # ============================================================ | |
| # IDE / Editor | |
| # ============================================================ | |
| .vscode/ | |
| .idea/ | |
| # ============================================================ | |
| # Operating system | |
| # ============================================================ | |
| .DS_Store | |
| Thumbs.db | |
| desktop.ini | |
| # ============================================================ | |
| # Secrets / local environment variables | |
| # ============================================================ | |
| .env | |
| .env.* | |
| # ============================================================ | |
| # Local ML / Hugging Face caches | |
| # ============================================================ | |
| .cache/ | |
| huggingface/ | |
| hf_cache/ | |
| # ============================================================ | |
| # Downloaded model weights / checkpoints | |
| # ============================================================ | |
| *.pt | |
| *.pth | |
| *.ckpt | |
| *.safetensors | |
| models/ | |
| checkpoints/ | |
| # ============================================================ | |
| # Temporary / log files | |
| # ============================================================ | |
| *.tmp | |
| *.temp | |
| *.log | |
| *.bak | |
| *.swp | |
| 08_push_to_hub.py |