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

echo ""
echo "===========================Testing: NAS==========================="
EXAMPLE_DIR=${CWD}/../examples/nas

9
echo "testing nnictl ss_gen (classic nas)..."
SparkSnail's avatar
SparkSnail committed
10
cd $EXAMPLE_DIR/legacy/classic_nas
Yuge Zhang's avatar
Yuge Zhang committed
11
12
13
14
15
16
17
18
19
20
21
SEARCH_SPACE_JSON=nni_auto_gen_search_space.json
if [ -f $SEARCH_SPACE_JSON ]; then
    rm $SEARCH_SPACE_JSON
fi
nnictl ss_gen -t "python3 mnist.py"
if [ ! -f $SEARCH_SPACE_JSON ]; then
    echo "Search space file not found!"
    exit 1
fi

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

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

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

QuanluZhang's avatar
QuanluZhang committed
36
37
38
#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