Skip to content

Commit

Permalink
Create download_model_checkpoints.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
MaterialEyes authored Aug 18, 2023
1 parent 7d20074 commit 5865a7c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions exsclaim/utilities/download_model_checkpoints.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5865a7c

Please sign in to comment.