update configs

This commit is contained in:
D-X-Y
2019-12-09 16:15:08 +11:00
parent da7d3245ca
commit 7b9fc9f8fe
10 changed files with 174 additions and 347 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
# bash scripts-search/NAS-Bench-102/meta-gen.sh NAS-BENCH-102 4
echo script name: $0
echo $# arguments
if [ "$#" -ne 2 ] ;then
echo "Input illegal number of parameters " $#
echo "Need 2 parameters for save-dir-name and maximum-node-in-cell"
exit 1
fi
name=$1
node=$2
save_dir=./output/${name}-${node}
python ./exps/NAS-Bench-102/main.py --mode meta --save_dir ${save_dir} --max_node ${node}