view scripts/nomad/nomad-parameters.txt @ 1189:ccab20f85710

changed to better parameters
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Sat, 25 Jun 2022 01:09:20 +0200
parents 7117a31555c1
children 8a626226793e
line wrap: on
line source

DIMENSION	8						# number of variables

BB_EXE		"$python3 site-parameters-optimization.py"      # 'site-parameters-optimization.py' is the blackbox program
BB_OUTPUT_TYPE	OBJ					        # object will be minimized

X0		initial-parameters.txt                          # starting point

LOWER_BOUND	( 0 0  1  0.01 2   0.1 0.1 1.01  )			# all variables' lower bounds
UPPER_BOUND	( 1 10 10 0.3  100 10 5 15 )			# all variables' upper bounds

MAX_BB_EVAL	500						# the algorithm terminates when
								# n black-box evaluations have
								# been made
							  
# TMP_DIR	/tmp						# indicates a directory where
								# temporary files are put
								# (increases performance by ~100%
								# if you're working on a network
								# account and if TMP_DIR is on a
								# local disk)

DISPLAY_DEGREE 2 

# DISPLAY_ALL_EVAL yes

DISPLAY_STATS BBE ( SOL ) OBJ					# Display the number of evaluation (BBE),
                                                                # the current solution ( SOL ) and the objective

# STATS_FILE test.txt BBE ( SOL ) OBJ