.museignore
toml
sha256:ca1d0e687bff8686b37126eb8e4fb6d38b40e189352a4920d66ae89c7274e340
Add T4 job cancellation retry and validation
Human
minor
⚠ breaking
41 days ago
| 1 | # .museignore - snapshot exclusion rules for this repository. |
| 2 | |
| 3 | [global] |
| 4 | patterns = [ |
| 5 | ".DS_Store", |
| 6 | "Thumbs.db", |
| 7 | ] |
| 8 | |
| 9 | [domain.code] |
| 10 | patterns = [ |
| 11 | "__pycache__/", |
| 12 | "*.pyc", |
| 13 | "*.pyo", |
| 14 | ".pytest_cache/", |
| 15 | ".mypy_cache/", |
| 16 | ".ruff_cache/", |
| 17 | ".venv/", |
| 18 | "venv/", |
| 19 | "dist/", |
| 20 | "build/", |
| 21 | "*.egg-info/", |
| 22 | |
| 23 | ".env", |
| 24 | ".env.*", |
| 25 | "*.key", |
| 26 | "*.pem", |
| 27 | "*.p12", |
| 28 | |
| 29 | "data/", |
| 30 | "artifacts/", |
| 31 | "models/", |
| 32 | "checkpoints/", |
| 33 | "*.safetensors", |
| 34 | "*.gguf", |
| 35 | "*.pt", |
| 36 | "*.pth", |
| 37 | "*.ckpt", |
| 38 | ] |
File History
1 commit
sha256:ca1d0e687bff8686b37126eb8e4fb6d38b40e189352a4920d66ae89c7274e340
Add T4 job cancellation retry and validation
Human
minor
⚠
41 days ago