Last change
on this file since 1254 was
1207,
checked in by Maciej Komosinski, 20 months ago
|
Examples made more friendly to shells that treat semicolon "as;a;command;separator" (like bash or powershell)
|
File size:
1.4 KB
|
Rev | Line | |
---|
[1190] | 1 | rem To learn about all available options of each .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 evolution with niching
|
---|
[1207] | 11 | python -m evolalg.run_frams_niching -path %DIR_WITH_FRAMS_LIBRARY% -sim "eval-allcriteria.sim;deterministic.sim;sample-period-longest.sim" -opt velocity -genformat 0 -dissim 1 -fit knn_niching -archive 50 -max_numparts 15 -max_numneurons 15 -max_numjoints 30 -max_numconnections 30 -max_numgenochars 10000 -popsize 50 -generations 10 -normalize none -hof_savefile HoF-niching.gen
|
---|
[1190] | 12 |
|
---|
| 13 | rem a generic island model example
|
---|
[1207] | 14 | python -m evolalg.run_frams_islands -path %DIR_WITH_FRAMS_LIBRARY% -islands=10 -generations_migration=5 -sim "eval-allcriteria.sim;only-body.sim;deterministic.sim;sample-period-2.sim" -opt vertpos -genformat 1 -max_numparts 15 -max_numneurons 15 -max_numjoints 5 -max_numconnections 5 -max_numgenochars 100 -popsize 20 -generations 15 -hof_savefile HoF-islands.gen
|
---|
[1190] | 15 |
|
---|
| 16 | rem a combination of various parameters for thorough testing, see source of 'test_diferent_settings.py'
|
---|
[1207] | 17 | rem python -m evolalg.tests.test_diferent_settings -path %DIR_WITH_FRAMS_LIBRARY% -sim "eval-allcriteria.sim"
|
---|
[1190] | 18 |
|
---|
| 19 |
|
---|
| 20 |
|
---|
| 21 | rem numerical examples (unrelated to Framsticks)
|
---|
| 22 | python -m evolalg.run_numerical_example
|
---|
| 23 | python -m evolalg.run_numerical_islands_example
|
---|
Note: See
TracBrowser
for help on using the repository browser.