diff options
Diffstat (limited to 'run_depth_ladder.sh')
| -rwxr-xr-x | run_depth_ladder.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/run_depth_ladder.sh b/run_depth_ladder.sh new file mode 100755 index 0000000..e450b47 --- /dev/null +++ b/run_depth_ladder.sh @@ -0,0 +1,14 @@ +#!/bin/bash +set -e +cd /home/yurenh2/fa +echo "[$(date)] START primary d=256 L=4 ladder" +CUDA_VISIBLE_DEVICES=2 python3 experiments/depth_utility_ladder.py \ + --d_hidden 256 --num_blocks 4 --dataset cifar10 \ + --methods bp fa dfa --k_values 0 1 2 3 4 --seeds 42 123 456 \ + --epochs 100 --gpu 0 --output_dir results/depth_ladder +echo "[$(date)] START secondary d=512 L=2 FA-failure ladder" +CUDA_VISIBLE_DEVICES=2 python3 experiments/depth_utility_ladder.py \ + --d_hidden 512 --num_blocks 2 --dataset cifar10 \ + --methods bp fa dfa --k_values 0 1 2 --seeds 42 123 456 \ + --epochs 100 --gpu 0 --output_dir results/depth_ladder +echo "[$(date)] ALL DONE" |
