| # dwpose_modifier .gitignore | |
| # refsディレクトリは全て無視 | |
| refs/ | |
| # 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 | |
| # 仮想環境 | |
| venv/ | |
| env/ | |
| ENV/ | |
| .env/ | |
| .python-version | |
| # キャッシュ・ログファイル | |
| .cache/ | |
| .pytest_cache/ | |
| *.log | |
| .coverage | |
| htmlcov/ | |
| .tox/ | |
| nosetests.xml | |
| coverage.xml | |
| *.cover | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| *.ipynb | |
| # VS Code | |
| .vscode/ | |
| *.code-workspace | |
| .history/ | |
| # PyCharm | |
| .idea/ | |
| *.iml | |
| *.iws | |
| *.ipr | |
| .idea_modules/ | |
| # macOS | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| ._* | |
| # Windows | |
| Thumbs.db | |
| ehthumbs.db | |
| Desktop.ini | |
| $RECYCLE.BIN/ | |
| # Linux | |
| *~ | |
| .directory | |
| .Trash-* | |
| # DWPoseモデル関連 | |
| models/**/*.onnx | |
| models/**/*.pth | |
| models/**/*.pt | |
| models/**/*.lock | |
| models/**/blobs/ | |
| models/**/snapshots/ | |
| models/**/.no_exist | |
| !models/.gitkeep | |
| # 一時ファイルや出力ファイル | |
| temp/ | |
| tmp/ | |
| output/ | |
| *.mp4 | |
| *.png | |
| *.avi | |
| *.mov | |
| *.jsonl | |
| test*.json | |
| !template_pose.json | |
| # testプログラム | |
| test*.py | |
| # HuggingFace Spacesデプロイ関連 | |
| .space/ | |
| # Gradio関連 | |
| .gradio/ | |
| # Node.js関連 | |
| external_editor/node_modules | |
| # 開発・ドキュメント関連 (HuggingFace公開時は除外) | |
| docs/ | |
| development_tests/ | |
| issues/ | |
| CLAUDE.md | |
| .claude/ | |
| AGENTS.md | |