Re: [scikit-learn] Inquiry on Genetic Algorithm

2022-10-30 Thread Trevor Stephens
Not GA, but gplearn is an estimator that wraps genetic programming in a (mostly) scikit-learn compatible API. TPOT is another package that might be what you're looking for? More details on what you are doing would he

Re: [scikit-learn] Inquiry on Genetic Algorithm

2022-10-30 Thread Matthieu Brucher
GA are not a machine learning model, they are a way of minimizing a cost function, so there are probably modules that are dedicated to this elsewhere. Matthieu Le dim. 30 oct. 2022 à 12:19, Thomas Evangelidis a écrit : > Hi, > > I am not aware of any *official* scikit-learn implementation of a

Re: [scikit-learn] Inquiry on Genetic Algorithm

2022-10-30 Thread Thomas Evangelidis
Hi, I am not aware of any *official* scikit-learn implementation of a genetic algorithm. I program my own with DEAP, which is quite versatile: https://deap.readthedocs.io/en/master/ ~Thomas On Sun, 30 Oct 2022 at 12:19, Ellarizza Fredeluces via scikit-learn < scikit-learn@python.org> wrote: >

[scikit-learn] Inquiry on Genetic Algorithm

2022-10-30 Thread Ellarizza Fredeluces via scikit-learn
Dear Scikit-Learn developers, First of all, thank you for your brilliant work. I would like to ask if a genetic algorithm is available in scikit-learn. I tried to search, but I only found this one