comparison scripts/nomad/nomad-parameters.txt @ 1223:051cf5bddc1f

work on optimization (improved for feature tracking)
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 21 Jun 2023 23:57:54 -0400
parents 2dc9899b73ae
children a09a80cdc118
comparison
equal deleted inserted replaced
1222:69b531c7a061 1223:051cf5bddc1f
1 DIMENSION 8 # number of variables 1 DIMENSION 11 # number of variables
2 2
3 BB_EXE "$python3 site-parameters-optimization.py" # 'site-parameters-optimization.py' is the blackbox program 3 BB_EXE "$python3 site-parameters-optimization.py" # 'site-parameters-optimization.py' is the blackbox program
4 BB_OUTPUT_TYPE OBJ # object will be minimized 4 BB_OUTPUT_TYPE OBJ # object will be minimized
5 5
6 X0 initial-parameters.txt # starting point 6 X0 initial-parameters.txt # starting point
7 7
8 LOWER_BOUND ( 0 0 1 0.01 2 0.1 0.1 1.0) # all variables' lower bounds 8 LOWER_BOUND ( 0.01 0 1 1 0.0001 1 -1 2 0.1 0.1 1.0) # all variables' lower bounds
9 UPPER_BOUND ( 1 10 10 0.3 100 10 5 15 ) # all variables' upper bounds 9 UPPER_BOUND ( 1 10 10 10 0.1 5 1 100 10 5 15 ) # all variables' upper bounds
10 10
11 MAX_BB_EVAL 500 # the algorithm terminates when 11 MAX_BB_EVAL 500 # the algorithm terminates when
12 # n black-box evaluations have 12 # n black-box evaluations have
13 # been made 13 # been made
14 14