source: framspy/run-evolalg-examples.cmd @ 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.2 KB
Line 
1rem To learn about all available options of each .py algorithm below, add "-h" to its parameters.
2rem Use the source code of the examples as a starting point for your customizations.
3rem Example usage:
4
5set DIR_WITH_FRAMS_LIBRARY=............
6
7
8
9rem simple one-criterion evolution
10python -m evolalg.examples.standard          -path %DIR_WITH_FRAMS_LIBRARY%   -opt numneurons
11
12
13rem "chaining" .sim files, subsequent files overwrite selected parameters
14python -m evolalg.examples.standard          -path %DIR_WITH_FRAMS_LIBRARY%   -sim eval-allcriteria.sim;deterministic.sim;sample-period-longest.sim    -opt velocity
15
16
17rem hard limit on the number of parts
18python -m evolalg.examples.niching_novelty   -path %DIR_WITH_FRAMS_LIBRARY%   -opt velocity   -max_numparts 6   -debug
19
20
21rem "local" niching
22python -m evolalg.examples.niching_novelty   -path %DIR_WITH_FRAMS_LIBRARY%   -opt vertpos    -fit knn_niching  -knn 3    -max_numjoints 8 -popsize 10 -generations 30
23
24
25rem two criteria, '-dissim ...' can also be used to include dissimilarity as one of the criteria
26python -m evolalg.examples.multicriteria     -path %DIR_WITH_FRAMS_LIBRARY%   -popsize 40 -generations 10 -opt velocity,vertpos
Note: See TracBrowser for help on using the repository browser.