nas.sh 1 KB
Newer Older
Yuge Zhang's avatar
Yuge Zhang committed
1
2
3
4
5
6
7
#!/bin/bash
set -e
CWD=${PWD}

echo ""
echo "===========================Testing: NAS==========================="
EXAMPLE_DIR=${CWD}/../examples/nas
8
RETIARII_TEST_DIR=${CWD}/retiarii_test
Yuge Zhang's avatar
Yuge Zhang committed
9

10
11
12
13
14
15
16
cd $RETIARII_TEST_DIR/naive
for net in "simple" "complex"; do
    for exec in "python" "graph"; do
        echo "testing multi-trial example on ${net}, ${exec}..."
        python3 search.py --net $net --exec $exec
    done
done
Yuge Zhang's avatar
Yuge Zhang committed
17
18

echo "testing darts..."
SparkSnail's avatar
SparkSnail committed
19
cd $EXAMPLE_DIR/oneshot/darts
Yuge Zhang's avatar
Yuge Zhang committed
20
python3 search.py --epochs 1 --channels 2 --layers 4
21
python3 retrain.py --arc-checkpoint ./checkpoint.json --layers 4 --epochs 1
Yuge Zhang's avatar
Yuge Zhang committed
22
23

echo "testing enas..."
SparkSnail's avatar
SparkSnail committed
24
cd $EXAMPLE_DIR/oneshot/enas
Yuge Zhang's avatar
Yuge Zhang committed
25
26
27
python3 search.py --search-for macro --epochs 1
python3 search.py --search-for micro --epochs 1

chicm-ms's avatar
chicm-ms committed
28
29
30
31
#disabled for now
#echo "testing naive..."
#cd $EXAMPLE_DIR/naive
#python3 train.py
Yuge Zhang's avatar
Yuge Zhang committed
32

QuanluZhang's avatar
QuanluZhang committed
33
34
35
#echo "testing pdarts..."
#cd $EXAMPLE_DIR/legacy/pdarts
#python3 search.py --epochs 1 --channels 4 --nodes 2 --log-frequency 10 --add_layers 0 --add_layers 1 --dropped_ops 3 --dropped_ops 3