MultiNEAT
MultiNEAT copied to clipboard
Portable NeuroEvolution Library
Anyone have a copy of the docs?
Hi, I try to save and load the phenotype I have after evolution. The Load function() freezes my computer by using all the memory. You can replicate this problem with:...
I saved my previous population with Genome::Save(FILE *a_file) and stopped the evolution. When I tried to resume where I left, the program froze and threw a Runtime Error. After some...
So while trying to go through the example from the website I run into this crash. I do have boost c++ library and the OpenCV 3.3.1 (if that could matter)...
The code for the TestESHyperNEAT_xor_3d.py appears identical to that of the TestESHyperNEAT_xor.py example... seems like they're both the 3d example?
https://github.com/peter-ch/MultiNEAT/blob/0dc93aa0e228e23eeb95371bdd3838c64f08fdae/src/Genome.cpp#L2697 Should be `did_mutate |= true` As it stands this code will set `did_mutate` to the result for the last neuron, rather than the OR value of all the nueron...
Traceback (most recent call last): File "/home/winycg/PycharmProjects/python_projext/peter-ch-MultiNEAT-86a6a5c/examples/gym/walker.py", line 6, in import MultiNEAT as NEAT File "/home/winycg/anaconda3/lib/python3.6/site-packages/MultiNEAT-0.5-py3.6-linux-x86_64.egg/MultiNEAT/__init__.py", line 3, in from ._MultiNEAT import * ImportError: /home/winycg/anaconda3/lib/python3.6/site-packages/MultiNEAT-0.5-py3.6-linux-x86_64.egg/MultiNEAT/_MultiNEAT.cpython-36m-x86_64-linux-gnu.so: undefined symbol: _ZN5boost7archive18text_iarchive_implINS0_13text_iarchiveEE13load_overrideERNS0_15class_name_typeEi Process finished...
https://github.com/peter-ch/MultiNEAT/blob/0dc93aa0e228e23eeb95371bdd3838c64f08fdae/src/Utils.cpp#L40 The existing `void Scale(vector& a_Values, const double a_tr_min, const double a_tr_max)` function ignores the passed `a_tr_min` and `a_tr_max`. Delegating to the existing `Scale(double&...)` function is inefficient because it causes...
Hi, when following the documentation/tutorial creating the genome fails, as the call in the documentation seems to lack a parameter (likely int a_FS_NEAT_links). I'd guess this is the numbers of...