NeuralGenetic
NeuralGenetic copied to clipboard
Building and training artificial neural networks (regression or classification) using the genetic algorithm.
Results
3
NeuralGenetic issues
Sort by
recently updated
recently updated
newest added
example_regression_fish案例中,请问可以打印输出适应度最优的自变量具体值嘛?
https://github.com/ahmedfgad/NeuralGenetic/blob/54be7a6a860593eb3853d6a3deb207eaf35eea9f/Tutorial Project/ga.py#L13 In the line: `return numpy.array(pop_weights_vector) ` a better alternative would be: `return numpy.asarray(pop_weights_vector) ` numpy.array() always attempts to create a new array, even if the input is already...
enhancement