| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| env/ | |
| venv/ | |
| ENV/ | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # Virtual environments | |
| venv/ | |
| ENV/ | |
| env/ | |
| # PyCharm | |
| .idea/ | |
| # VS Code | |
| .vscode/ | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| # Model files and results | |
| results/ | |
| models/ | |
| checkpoints/ | |
| *.pt | |
| *.pth | |
| *.bin | |
| *.onnx | |
| # Data files (keep structure, ignore content) | |
| data/*.csv | |
| data/*.json | |
| data/*.txt | |
| !data/.gitkeep | |
| # Logs | |
| *.log | |
| logs/ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Hugging Face | |
| wandb/ | |
| .huggingface/ | |
| # Documentation - exclude from Hub upload | |
| QUICKSTART.md | |