34 lines
866 B
Bash
34 lines
866 B
Bash
#!/bin/bash
|
|
# bash ./scripts-search/algos/Random.sh -1
|
|
echo script name: $0
|
|
echo $# arguments
|
|
if [ "$#" -ne 1 ] ;then
|
|
echo "Input illegal number of parameters " $#
|
|
echo "Need 1 parameters for seed"
|
|
exit 1
|
|
fi
|
|
if [ "$TORCH_HOME" = "" ]; then
|
|
echo "Must set TORCH_HOME envoriment variable for data dir saving"
|
|
exit 1
|
|
else
|
|
echo "TORCH_HOME : $TORCH_HOME"
|
|
fi
|
|
|
|
dataset=cifar10
|
|
seed=$1
|
|
channel=16
|
|
num_cells=5
|
|
max_nodes=4
|
|
space=nas-bench-201
|
|
|
|
save_dir=./output/search-cell-${space}/RAND-${dataset}
|
|
|
|
OMP_NUM_THREADS=4 python ./exps/algos/RANDOM.py \
|
|
--save_dir ${save_dir} --max_nodes ${max_nodes} --channel ${channel} --num_cells ${num_cells} \
|
|
--dataset ${dataset} \
|
|
--search_space_name ${space} \
|
|
--arch_nas_dataset ${TORCH_HOME}/NAS-Bench-201-v1_0-e61699.pth \
|
|
--time_budget 12000 \
|
|
--workers 4 --print_freq 200 --rand_seed ${seed}
|
|
# --random_num 100 \
|