We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/nnaisense/evotorch/blame/9d31d59cfcace0c99de59bf59bfbc7ceb55ae11f/src/evotorch/algorithms/cmaes.py#L365 This line results in an overflow error for me. The floor results to zero, thus division by zero. shouldn't this line be: int(np.floor(1 / (10 * d * (self.c_1.cpu() + self.c_mu.cpu()))))
int(np.floor(1 / (10 * d * (self.c_1.cpu() + self.c_mu.cpu()))))
The text was updated successfully, but these errors were encountered:
Hi @sstroobants ! Thank you for your very useful feedback, and sorry for my very late reaction! Hopefully this fixes the issue: #86
Sorry, something went wrong.
No branches or pull requests
https://github.com/nnaisense/evotorch/blame/9d31d59cfcace0c99de59bf59bfbc7ceb55ae11f/src/evotorch/algorithms/cmaes.py#L365
This line results in an overflow error for me. The floor results to zero, thus division by zero.
shouldn't this line be:
int(np.floor(1 / (10 * d * (self.c_1.cpu() + self.c_mu.cpu()))))
The text was updated successfully, but these errors were encountered: