File size: 503 Bytes
d0ffe9c |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/usr/bin/env bash
echo "Attempting download of Motion Module models from Google Drive."
echo "If this fails, please download them manually from the links in the error messages/README."
gdown 1RqkQuGPaCO5sGZ6V6KZ-jUWmsRu48Kdq -O models/motion-module/ || true
gdown 1ql0g_Ys4UCz2RnokYlBjyOYPbttbIpbu -O models/motion-module/ || true
echo "Motion module download script complete."
echo "If you see errors above, please download the models manually from the links in the error messages/README."
exit 0
|