Skip to content

Instantly share code, notes, and snippets.

@pohanchi
Created January 5, 2022 16:42
Show Gist options
  • Select an option

  • Save pohanchi/76d72c1359af004aa9a593663cdedf90 to your computer and use it in GitHub Desktop.

Select an option

Save pohanchi/76d72c1359af004aa9a593663cdedf90 to your computer and use it in GitHub Desktop.
RUNNING_SCRIPT
for emo in annoyance pride joy sadness approval confusion;
do
for human_pt in {0..1};
do
echo "=================================================================="
echo "$emo-for-$human_pt-th human-pt"
source ~/.zshrc; tasker "human$emo-$human_pt" "bash run_emo_h.sh $emo dgpt $human_pt"
sleep 20
echo "=================================================================="
done
done
#!/usr/bin/zsh
#test_task = ['<annoyance>', '<pride>', '<joy>', '<sadness>', '<approval>', '<confusion>']
for emo in annoyance pride joy sadness approval confusion;
do
for model in hsuan_multi;
do
echo "=================================================================="
echo "$emo-for-$model no_input"
source ~/.zshrc; tasker "$emo-multi" "bash run_emo_blend_no_input.sh $emo $model" &
sleep 20
echo "=================================================================="
done
done
for emo in annoyance pride joy sadness approval confusion;
do
for model in hsuan_multi;
do
echo "=================================================================="
echo "$emo-for-$model no_input"
source ~/.zshrc; tasker "$emo-multi" "bash run_emo_no_input.sh $emo $model" &
sleep 20
echo "=================================================================="
done
done
#!/usr/bin/zsh
#election longe musicalinstruments birds office animal water science shapes school transportation dance mythicalbeasts family vegetables aprilfool shoes emotions flowers weapons rocks roadways farm;
for word in election longe musicalinstruments birds office animal water science shapes school transportation dance mythicalbeasts family vegetables aprilfool shoes emotions flowers weapons rocks roadways farm;
do
for model in hsuan_multi;
do
echo "=================================================================="
echo "$word-for-$model"
source ~/.zshrc; tasker "${word:0:4}-multi" "bash run_sp_blend_no_input.sh $word $model" &
sleep 20
echo "=================================================================="
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment