Last change
on this file since 1193 was
1161,
checked in by Maciej Komosinski, 3 years ago
|
Multiple new functionalities in simple evolutionary optimization in python; added many new parameters; added some examples
|
File size:
1.1 KB
|
Rev | Line | |
---|
[1161] | 1 | rem To learn about all available options of the .py algorithm below, add "-h" to its parameters.
|
---|
| 2 | rem Use the source code of the examples as a starting point for your customizations.
|
---|
| 3 | rem Example usage:
|
---|
| 4 |
|
---|
| 5 | set DIR_WITH_FRAMS_LIBRARY=.........................
|
---|
| 6 |
|
---|
| 7 |
|
---|
| 8 |
|
---|
| 9 |
|
---|
| 10 | rem simple one-criterion evolution, maximize the number of neurons
|
---|
| 11 | python FramsticksEvolution.py -path %DIR_WITH_FRAMS_LIBRARY% -sim eval-allcriteria.sim -opt numneurons
|
---|
| 12 |
|
---|
| 13 |
|
---|
| 14 | rem as above but "chaining" .sim files, subsequent files overwrite selected parameters
|
---|
| 15 | python FramsticksEvolution.py -path %DIR_WITH_FRAMS_LIBRARY% -sim eval-allcriteria.sim;deterministic.sim;sample-period-longest.sim -opt velocity
|
---|
| 16 |
|
---|
| 17 |
|
---|
| 18 | rem introducing hard limit on the number of Parts, using f9 genetic encoding and saving Hall of Fame
|
---|
| 19 | python FramsticksEvolution.py -path %DIR_WITH_FRAMS_LIBRARY% -opt velocity -max_numparts 6 -genformat 9 -hof_savefile HoF-f9.gen
|
---|
| 20 |
|
---|
| 21 |
|
---|
| 22 | rem two criteria
|
---|
| 23 | python FramsticksEvolution.py -path %DIR_WITH_FRAMS_LIBRARY% -popsize 40 -generations 10 -opt velocity,vertpos
|
---|
Note: See
TracBrowser
for help on using the repository browser.