Algorithm close to a default simple GA? #127
-
Cheers, first of all I have to say this project not only seems very intelligently engineered, but also has the correct amount of abstraction for all types of users with various use cases that were for sure lacking in previous EC accelerators. I've done research on ECs and developed a type of genetic algorithm and I am naturally interested in translating into to into this framework. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Thank you for your insightful feedback on our project. Currently, there isn't a specific SimpleGA implementation available. Previously, we had one, but it was removed due to concerns regarding potential misinterpretation. It's important to note that "GA" represents a class of algorithms, and the performance can vary significantly depending on the specific operators employed. So instead of providing a If you want to build your own GA now, we provide comprehensive guidance on how to craft custom algorithms within EvoX. You can access this resource, including an ExampleGA implementation, and our step-by-step guide on translating a typical GA implementation into our framework, at Custom algorithms and problems in EvoX. Thank you. |
Beta Was this translation helpful? Give feedback.
Thank you for your insightful feedback on our project.
Currently, there isn't a specific SimpleGA implementation available. Previously, we had one, but it was removed due to concerns regarding potential misinterpretation. It's important to note that "GA" represents a class of algorithms, and the performance can vary significantly depending on the specific operators employed.
So instead of providing a
SimpleGA
, we propose to offer a simple abstraction for all GA algorithms. This abstraction will allow users to define a series of operators to construct their own genetic algorithms. (similar to the approach oftorch.nn.Sequential
for building neural network blocks). We are expecting this to …