Skip to content

Commit 9b3dd51

Browse files
authored
Simplify model weight download script
Updated the script to unzip the entire archive and remove the temporary directory.
1 parent 2cfdea5 commit 9b3dd51

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

nnunet-baseline/download_model_weights.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ echo "Download: ${ZIP_NAME}"
1010
curl -L -o "${ZIP_NAME}" "${URL}"
1111

1212
echo "Extracting nnUNet_results"
13-
unzip "${ZIP_NAME}" "AutoPETIII_nnunet_baseline/nnUNet_results/*"
14-
mv AutoPETIII_nnunet_baseline/nnUNet_results .
13+
unzip "${ZIP_NAME}"
1514
rm -rf AutoPETIII_nnunet_baseline "${ZIP_NAME}"
1615

0 commit comments

Comments
 (0)