You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
Specifically it seems the crash occurs when the genome variable is accessed or used.
Running on ubuntu 16.04, python 3.5.4
params = NEAT.Parameters()
# define pop size as 100 default is 300
params.PopulationSize = 100
# create a 3 inputs and 2 outputs network
genome = NEAT.Genome(0, 3, 0, 2, False, NEAT.ActivationFunction.UNSIGNED_SIGMOID,
NEAT.ActivationFunction.UNSIGNED_SIGMOID, 0, params, 0)
# create the actual Population
pop = NEAT.Population(genome, params, True, 1.0, 0) # the 0 is the RNG seed
The text was updated successfully, but these errors were encountered:
@MatisPatel: Did you ever find the chance to understand this error and find a the cause or a fix? I am running into the same problem, seemingly after a small but seemingly random number of generations when calling pop.Epoch().
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)
Specifically it seems the crash occurs when the genome variable is accessed or used.
Running on ubuntu 16.04, python 3.5.4
The text was updated successfully, but these errors were encountered: