Demo / docker /files /entrypoint.sh
yocabon's picture
add docker for mast3r demo (mostly taken from dust3r)
0faef79
raw
history blame
195 Bytes
#!/bin/bash
set -eux
DEVICE=${DEVICE:-cuda}
MODEL=${MODEL:-MASt3R_ViTLarge_BaseDecoder_512_dpt.pth}
exec python3 demo.py --weights "checkpoints/$MODEL" --device "$DEVICE" --local_network "$@"