File size: 610 Bytes
fba7242 ff4d1d5 fba7242 6d767ba 12bdf45 6d767ba 6f29518 89e283a 1868d69 a55a160 12bdf45 1868d69 fba7242 2063a08 e8996fc 2063a08 09f209f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#!/bin/bash
wandb login ${wandb_api_key}
echo "Starting attempt at training with default from git repo!"
#cd teaching_arithmetic
# --wandb_log=False \
ls /app/*
cd teaching_arithmetic
mkdir -p out
python train.py config2/addition/plain/train_addition_bal.py \
--ckpt_path_name="ckpt_10000.pt" --wandb_entity='' \
--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 training! Uploading!"
cd ..
python upload_results.py
echo "Done?"
python pause_space.py |