Last active
September 5, 2022 16:45
-
-
Save tomsherborne/fe979178bd70a390fcc66a22ac579470 to your computer and use it in GitHub Desktop.
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
splits="444 555" | |
locales="fr pt es de zh" | |
samples="01 05 10 20 50" | |
for sp in $splits; | |
do echo $sp; | |
for loc in $locales; | |
do echo $loc; | |
for sample in $samples; | |
do echo $sample; | |
cat ./${sp}/${sample}/${loc}.train* >> ./${sp}/${sample}/ALL.train.union.${sp}.${sample}; | |
done; | |
done; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment