-
Hello
I can not run the NumpyANN examples because of this error:
ModuleNotFoundError: No module named 'pygad.nn'; 'pygad' is not a package
and I can not install using pip pygad.nn or other ex…
-
If it's `pip3` anywhere, it's `pip3` everywhere. Windows gets `pip3` from `python3` just like everybody else
-
The `fitness_func` method is called more then ones for each generation. This can be avoided using the previous calculated fitness instead calling again `fitness_func` or `cal_pop_fitness`. This issue …
-
It seems that the two parent selection technique are exactly the same. Rank parent selection is however meant to be more of an explorative parent selection approach where every chromosome/solution is …
-
I use pygad to train my neural network. The code below is a test of pygad. And it worked. After I wrote simple NN implementation and tried to train it by pygad. But for some reason, fitness never exce…
-
Hey!
I am working on some code with open cv to track the percentage of frames in which my face is detected in terms of "attention span". I intend to optimize this attention span with an evolutionar…
-
The `initialize_population()` is called directly by the constructor of GA, i.e., `__init__()`.
That function randomly creates values from -4 to 4. I have a feeling that that function should be custo…