From 5865a7cb1e8834d41e9992546de61d4fc74a8da3 Mon Sep 17 00:00:00 2001 From: MaterialEyes <57538859+MaterialEyes@users.noreply.github.com> Date: Fri, 18 Aug 2023 02:19:40 -0400 Subject: [PATCH] Create download_model_checkpoints.sh --- exsclaim/utilities/download_model_checkpoints.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 exsclaim/utilities/download_model_checkpoints.sh diff --git a/exsclaim/utilities/download_model_checkpoints.sh b/exsclaim/utilities/download_model_checkpoints.sh new file mode 100644 index 0000000..83a6cc0 --- /dev/null +++ b/exsclaim/utilities/download_model_checkpoints.sh @@ -0,0 +1,15 @@ +#!/bin/bash +CWD="$(pwd)" +FIGURE_MODELS_SAVE_DIR=$CWD/exsclaim/figures/checkpoints/ +mkdir $FIGURE_MODELS_SAVE_DIR + +# classifier_model.pt +gdown https://docs.google.com/uc\?export\=download\&id\=16BxXXGJyHfMtzhDEufIwMkcDoBftZosh -O $FIGURE_MODELS_SAVE_DIR +# object_detection_model.pt +gdown https://docs.google.com/uc\?export\=download\&id\=1HbzvNvhPcvUKh_RCddjKIvdRFt6T4PEH -O $FIGURE_MODELS_SAVE_DIR +# text_recognition_model.pt +gdown https://docs.google.com/uc\?export\=download\&id\=1p9miOnR_dUxO5jpIv1hKtsZQuFHAaQpX -O $FIGURE_MODELS_SAVE_DIR +# scale_bar_detection_model.pt +gdown https://docs.google.com/uc\?export\=download\&id\=11Kfu9xEbjG0Mw2u0zCJlKy_4C6K21qqg -O $FIGURE_MODELS_SAVE_DIR +# scale_label_recognition_model.pt +gdown https://docs.google.com/uc\?export\=download\&id\=1AND30sQpSrph2CGl86k2aWNqNp-0vLnR -O $FIGURE_MODELS_SAVE_DIR