File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33# add path of the root folder
4- export PYTHONPATH=/home/codelab/work/benchmarks :$PYTHONPATH
4+ export PYTHONPATH=/home/name/snbo :$PYTHONPATH
55
66# variables
77method=" snbo"
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # add path of the root folder
4+ export PYTHONPATH=/home/name/snbo:$PYTHONPATH
5+
6+ # variables
7+ problem=" rover"
8+ dim=100
9+ n_init=$(( 2 * $dim ))
10+ max_evals=2000
11+
12+ python algorithms/optimize.py --method " snbo" --problem $problem --dim $dim --n_init $n_init --max_evals $max_evals \
13+ --neurons 256 256 --act_funcs " GELU" " GELU"
14+
15+ python algorithms/optimize.py --method " bo" --problem $problem --dim $dim --n_init $n_init --max_evals $max_evals
16+
17+ python algorithms/optimize.py --method " ibnn" --problem $problem --dim $dim --n_init $n_init --max_evals $max_evals
You can’t perform that action at this time.
0 commit comments