Changeset 1149 for framspy/run-evolalg-examples.cmd
- Timestamp:
- 09/25/21 01:02:06 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
framspy/run-evolalg-examples.cmd
r1147 r1149 1 rem To learn about all available options of each .py algorithm , add "-h" to its parameters.1 rem To learn about all available options of each .py algorithm below, add "-h" to its parameters. 2 2 rem Use the source code of the examples as a starting point for your customizations. 3 3 rem Example usage: … … 6 6 7 7 8 9 rem simple one-criterion evolution 8 10 python -m evolalg.examples.standard -path %DIR_WITH_FRAMS_LIBRARY% -opt numneurons 9 11 12 13 rem "chaining" .sim files, subsequent files overwrite selected parameters 14 python -m evolalg.examples.standard -path %DIR_WITH_FRAMS_LIBRARY% -sim eval-allcriteria.sim;deterministic.sim;sample-period-longest.sim -opt velocity 15 16 17 rem hard limit on the number of parts 10 18 python -m evolalg.examples.niching_novelty -path %DIR_WITH_FRAMS_LIBRARY% -opt velocity -max_numparts 6 -debug 11 19 20 21 rem "local" niching 12 22 python -m evolalg.examples.niching_novelty -path %DIR_WITH_FRAMS_LIBRARY% -opt vertpos -fit knn_niching -knn 3 -max_numjoints 8 -popsize 10 -generations 30 13 23 14 rem '-dissim ...' can be used to include dissimilarity as one of the criteria 24 25 rem two criteria, '-dissim ...' can also be used to include dissimilarity as one of the criteria 15 26 python -m evolalg.examples.multicriteria -path %DIR_WITH_FRAMS_LIBRARY% -popsize 40 -generations 10 -opt velocity,vertpos
Note: See TracChangeset
for help on using the changeset viewer.