Ignore:
Timestamp:
09/25/21 01:02:06 (3 years ago)
Author:
Maciej Komosinski
Message:

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

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.
     1rem To learn about all available options of each .py algorithm below, add "-h" to its parameters.
    22rem Use the source code of the examples as a starting point for your customizations.
    33rem Example usage:
     
    66
    77
     8
     9rem simple one-criterion evolution
    810python -m evolalg.examples.standard          -path %DIR_WITH_FRAMS_LIBRARY%   -opt numneurons
    911
     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
    1018python -m evolalg.examples.niching_novelty   -path %DIR_WITH_FRAMS_LIBRARY%   -opt velocity   -max_numparts 6   -debug
    1119
     20
     21rem "local" niching
    1222python -m evolalg.examples.niching_novelty   -path %DIR_WITH_FRAMS_LIBRARY%   -opt vertpos    -fit knn_niching  -knn 3    -max_numjoints 8 -popsize 10 -generations 30
    1323
    14 rem '-dissim ...' can be used to include dissimilarity as one of the criteria
     24
     25rem two criteria, '-dissim ...' can also be used to include dissimilarity as one of the criteria
    1526python -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.