Skip to content

Instantly share code, notes, and snippets.

@rohithteja
Last active May 3, 2022 08:26
Show Gist options
  • Save rohithteja/64df01a8887fb254a8658d997b23a1fe to your computer and use it in GitHub Desktop.
Save rohithteja/64df01a8887fb254a8658d997b23a1fe to your computer and use it in GitHub Desktop.
Looping experiments using shell script
for dim_red_type in 'pca' 'lle'; do
for n_comp in 5 10; do
for classifier in 'lr' 'svc' 'rf'; do
echo $dim_red_type $n_comp $classifier
python argparse_automate.py --dim_red_type "${dim_red_type}" --n_comp "${n_comp}" --classifier "${classifier}"
done
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment