Created
January 5, 2022 16:42
-
-
Save pohanchi/76d72c1359af004aa9a593663cdedf90 to your computer and use it in GitHub Desktop.
RUNNING_SCRIPT
This file contains hidden or 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
| 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 |
This file contains hidden or 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
| #!/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 |
This file contains hidden or 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
| 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 |
This file contains hidden or 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
| #!/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