File size: 318 Bytes
41f97d1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
for k in 1 2 3 5 10
do
python finetune.py \
--mode full \
--k $k \
--batch_size 64 \
--num_epochs 200 \
--checkpoint './checkpoint/UniMTS.pth' \
--data_path 'UniMTS_data'
done
python finetune.py \
--mode full \
--batch_size 64 \
--num_epochs 200 \
--checkpoint './checkpoint/UniMTS.pth' \
--data_path 'UniMTS_data'
|