a b/metapred.sh
1
#!/bin/bash
2
#PBS -l nodes=1:ppn=24
3
#PBS -l walltime=4:00:00
4
#PBS -N session1_default
5
#PBS -A course
6
#PBS -q ShortQ
7
8
#cd $PBS_O_WORKDIR
9
# cnn configuration
10
python main.py --method='cnn' --metatrain_iterations=10000 --meta_batch_size=32 --update_batch_size=4 --meta_lr=0.0001 --update_lr=1e-5 --num_updates=4 --n_total_batches=500000
11
# rnn configuration
12
python main.py --method='rnn' --metatrain_iterations=10000 --meta_batch_size=32 --update_batch_size=4 --meta_lr=0.0001 --update_lr=1e-5 --num_updates=4 --n_total_batches=500000
13
echo All done