forked from chenxin061/pdarts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.sh
35 lines (32 loc) · 850 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
echo 'strat train_search'
python train_search.py \
--batch_size 32 \
--tmp_data_dir /path/to/your/data \
--save log_path \
--add_layers 6 \
--add_layers 12 \
--dropout_rate 0.1 \
--dropout_rate 0.4 \
--dropout_rate 0.7 \
--note note_of_this_run
echo 'strat train_cifar'
python train_cifar.py \
--init_channels 16 \
--layers 5 \
--epochs 1 \
--tmp_data_dir /path/to/your/data \
--auxiliary \
--cutout \
--save log_path \
--note note_of_this_run \
--arch SEARCH
echo 'start test'
python test.py \
--init_channels 16 \
--layers 5 \
--auxiliary \
--model_path log_patheval/weights.pt \
--data /path/to/your/data \
--arch SEARCH
echo 'finish start sleep'
sleep 3d