| # 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/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Jupyter | |
| .ipynb_checkpoints/ | |
| *.ipynb | |
| # Model outputs | |
| output/ | |
| batch_output/ | |
| custom_output/ | |
| visualization/ | |
| *.png | |
| *.jpg | |
| *.jpeg | |
| !example_images/*.jpg | |
| !example_images/*.png | |
| # Temporary files | |
| tmp/ | |
| densepose_/tmp/ | |
| *.tmp | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Checkpoints (if not included in repo) | |
| # Uncomment these if you're not including model checkpoints | |
| # chkpt/ | |
| # *.pth | |
| # *.pkl | |
| # Large files | |
| *.zip | |
| *.tar.gz | |
| *.rar | |
| # Logs | |
| *.log | |
| logs/ | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |