source: framspy/deterministic.sim @ 1149

Last change on this file since 1149 was 1149, checked in by Maciej Komosinski, 2 years ago

Added support for loading multiple .sim files where each can overwrite selected settings

File size: 1.0 KB
Line 
1# Parameter values that make the evaluation of a Framsticks creature deterministic.
2# The values turn off random noise, so evaluation of the same genotype will always yield the same performance.
3# The advantage is that you do not need to evaluate a genotype many times, and performance values are reliable.
4# The disadvantage is that evolved creatures are "overfitting", i.e. rely entirely on the specific environment,
5# and their behavior may be different in any other environment or (even slightly) changed conditions or parameter values,
6# so each creature evolved using these settings must be later inspected using exactly the same setup.
7#
8# Before loading this file, load base settings, e.g. "eval-allcriteria.sim".
9# Put this file in the "data" subdirectory within the Framsticks distribution.
10
11sim_params:
12# always central location in the world:
13placement:1
14# no need to evaluate many times:
15evalcount:1
16# no random initialization of state in neurons:
17randinit:0.0
18# other noise parameters:
19nnoise:0.0
20bnoise_struct:0.0
21bnoise_vel:0.0
Note: See TracBrowser for help on using the repository browser.