1
I Use This!
Very Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
May 14, 2023 — May 14, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Renamed *Count to *_count in PrimitiveSetTyped. More... almost 14 years ago
merge More... almost 14 years ago
Moved random seed init in __main__. More... almost 14 years ago
merge More... almost 14 years ago
Medium bug in Iterate : - The first iterator was created at the initialization of the object Iterate. Since, the function producing the sequence on which Iterate iterates might be random, the first iterator can't be created during initialisation since the random seed can be changed afterwards. More... almost 14 years ago
Modified all examples to use if __name__ == "__main__". Example coev_symbreg now import gp_symbeg instead of redifining the toolbox content and the primitive set. More... almost 14 years ago
In gp_ant example : - Removed unused import - Renamed variable file to trail_file (shadow built-in) More... almost 14 years ago
- Removed addADF in PrimitiveSet since it had nothing to the inherit function. - Removed adfs attributes in PrimitiveTypedSet since it has no used anymore either. - Slightly modifier gp_spambase example to better demonstrate the possibilites of the new GP interface. More... almost 14 years ago
PrimitiveSet (and PrimitiveSetTyped) now have a name and an arity. - This enable the possibility to automatically generate the function arguments. - The addADF method now takes and PrimitiveSet as argument, reducing the error of writing the ADF name multiple times. - The method renameArguments has been added to PrimitiveSet, and give the user the possibility to rename the automatically renamed arguments with a dict mapping the old name with the new one. - Modified the examples to use the new PrimitiveSet interface More... almost 14 years ago
The primitive set is now added via the creator as a part of the Tree in GP. This reduces the complexity of the toolbox registration and the algorithm when using ADFs. The code length is untouched when ADFs aren't used. More... almost 14 years ago
Modified first ADF prototype to support ADF calling ADF of greater indices (0 can call 1,2,3, 1 can call 2,3, etc.) More... almost 14 years ago
Integration of ADF first prototype in GP. More... almost 14 years ago
merge More... almost 14 years ago
FuncCycle class no long inherits from list, since it has no use of it. More... almost 14 years ago
Added tag 0.5 for changeset 8da74446510d More... almost 14 years ago
merge More... almost 14 years ago
Corrected error in the new register integrating regInit : - when using initialization with FuncCycle, the content was never initialized. More... almost 14 years ago
Added tag 0.5 for changeset a178ac75270d More... almost 14 years ago
Added some operators documentation. More... almost 14 years ago
merge More... almost 14 years ago
In documentation - evo_toolbox.rst : Removed genotype categories in Crossover and added GP operators in Crossover and Mutation. More... almost 14 years ago
Added documentation for ES operators and Messy crossover. More... almost 14 years ago
Modified seed in gp_symbreg to demonstrate a converging run. More... almost 14 years ago
Added documentation to basic gp operators. More... almost 14 years ago
Added an example of symbolic regression coevolution with GA and GP. The GP individuals are the symbolics expressions and the GA individuals are the test cases of the function. More... almost 14 years ago
Replaced 'Mean' and 'Std. Dev.' in statistics logging by 'Avg' and 'Std', in both examples and algorithms. More... almost 14 years ago
Added mu parameter to the gaussian mutation and modified the corresponding example. More... almost 14 years ago
Modified some documentation. More... almost 14 years ago
Corrected cxSet and mutSet in ga_knapsack exemple to del fitness.values instead of fitness.valid = False More... almost 14 years ago
merge More... almost 14 years ago