| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # Byte-compiled / optimized / DLL files
- __pycache__/
- *.py[cod]
- *$py.class
- *.so
- # Distribution / packaging
- dist/
- build/
- *.egg
- *.egg-info/
- *.whl
- # Testing
- .pytest_cache/
- # Virtual environments
- .env
- .venv/
- venv/
- # IDE and editor files
- .idea/
- .vscode/
- *.swp
- *.swo
- # OS generated files
- .DS_Store
- Thumbs.db
- # Jupyter Notebook
- .ipynb_checkpoints/
- # Project specific directories
- lib/sam2/demo/
- ref/
- tmp/
- # Model weights and checkpoints
- *.pth
- *.pt
- *.ckpt
- *.onnx
- # Logs and experimental outputs
- *.log
- outputs/
- results/
- runs/
- lightning_logs/
- swanlog/
- # Data and documentation (exclude lib/data)
- /data/
- cache/
- docs/
- !lib/data/
- # Codex and git ignore itself
- .codex
- .gitignore
- # Test directory
- tests/
|