-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOCS: add links to noSM and SM 60M ckpts
- Loading branch information
1 parent
84b40f7
commit f66e682
Showing
5 changed files
with
66 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,35 @@ | ||
#!/bin/bash | ||
|
||
mkdir -p Data/Checkpoints | ||
curl -o Data/Checkpoints/van_6x3_6x3_final.ckpt https://files.batistalab.com/DirectMultiStep/ckpts/van_6x3_6x3_final.ckpt | ||
|
||
read -p "Do you want to download (with SM, 10M) model ckpt? (38 MB) [y/N]: " choice | ||
case "$choice" in | ||
y|Y ) | ||
curl -o Data/Checkpoints/sm_6x3_6x3_final.ckpt https://files.batistalab.com/DirectMultiStep/ckpts/sm_6x3_6x3_final.ckpt | ||
;; | ||
* ) | ||
echo "Skipping (with SM, 10M) ckpt." | ||
;; | ||
esac | ||
|
||
read -p "Do you want to download (with SM, 60M) model ckpt? (228 MB) [y/N]: " choice | ||
case "$choice" in | ||
y|Y ) | ||
curl -o Data/Checkpoints/sm_8x4_8x4_final.ckpt https://files.batistalab.com/DirectMultiStep/ckpts/sm_8x4_8x4_final.ckpt | ||
;; | ||
* ) | ||
echo "Skipping (with SM, 60M) ckpt." | ||
;; | ||
esac | ||
|
||
read -p "Do you want to download (without SM, 60M) model ckpt? (228 MB) [y/N]: " choice | ||
case "$choice" in | ||
y|Y ) | ||
curl -o Data/Checkpoints/nosm_8x4_8x4_final.ckpt https://files.batistalab.com/DirectMultiStep/ckpts/nosm_8x4_8x4_final.ckpt | ||
;; | ||
* ) | ||
echo "Skipping (without SM, 60M) ckpt." | ||
;; | ||
esac | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters