File size: 468 Bytes
15b8951 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # colcon workspace artifacts (rebuilt inside the image)
build/
install/
log/
# git
.git/
.gitignore
# python
**/__pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
# runtime output, not source
vla_logs/
navila/result/
# heavy weights (fetched separately, not committed) — small in-repo YOLO
# weights under vlm/ are intentionally NOT excluded here, they ship with the image.
navila-ckpt/
*.safetensors
*.pth
# editor / misc
.vscode/
.DS_Store
.superpowers/
docs/
|