-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Are the weights optimized by the autograd of torch? #4
Comments
The weights are optimized in an evolutionary fashion as well. Note the following in config files: # Float between 0.0 and 1.0 - rate at which a connection gene will be mutated
CONNECTION_MUTATION_RATE = 0.80
# Float between 0.0 and 1.0 - rate at which a connections weight is perturbed (if connection is to be mutated)
CONNECTION_PERTURBATION_RATE = 0.90 |
It should be possible to also update the weights with some training procedure before fitness evaluation. It could be interesting to see if something like the Baldwin Effect is evident in the resulting fitness distribution. |
Thank you and it's really a cool job. |
Yes, that would absolutely be possible. I'd be curious to see your results if you do so - we could add such an experiment to this repo perhaps. |
I'll try it and hope there would be some progress. |
Hi, I understand that the topology is optimized through EA. How the weights are optimized. EA method or backpropagating by torch?
The text was updated successfully, but these errors were encountered: