| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # Virtual environments | |
| venv/ | |
| ENV/ | |
| env/ | |
| .venv | |
| # IDEs | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| .tox/ | |
| .hypothesis/ | |
| # Jupyter | |
| .ipynb_checkpoints | |
| # MyPy | |
| .mypy_cache/ | |
| .dmypy.json | |
| dmypy.json | |
| # Documentation | |
| docs/_build/ | |
| docs/_static/ | |
| docs/_templates/ | |
| # Logs | |
| *.log | |
| logs/ | |
| # Model files | |
| *.pt | |
| *.pth | |
| *.onnx | |
| models/ | |
| checkpoints/ | |
| # Data | |
| data/ | |
| *.csv | |
| *.json | |
| *.yaml | |
| *.yml | |
| # OS | |
| Thumbs.db | |
| # Temporary files | |
| tmp/ | |
| temp/ | |
| *.tmp | |