news-navigator/code/code-merge-v6/3_create_sub.sh
2022-08-02 13:18:36 +00:00

11 lines
232 B
Bash

for i in ./predictions/dev-0/labels/*txt ;do
python change_to_nonrelative.py $i $i-nonrelative &
done
wait
for i in ./predictions/test-A/labels/*txt ; do
python change_to_nonrelative.py $i $i-nonrelative &
done
wait