File size: 476 Bytes
fba7242 c75adf0 65b9968 1323b15 fba7242 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash
echo "Starting attempt at training with default from git repo!"
#cd teaching_arithmetic
pwd
ls
mkdir /app/teaching_arithmetic/out
python /app/teaching_arithmetic/train.py config2/addition/plain/train_addition_bal.py \
--ckpt_path_name="ckpt_10000.pt" \
--out_dir='out/addition_plain' \
--data_type='text' --data_format='plain' \
--dataset='bal' --train_data_path="train_3digit_10000.txt" \
--eval_addition=True --start='FILE:data/bal/test_10000.txt'
echo "Done?" |