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
The below animation helps understanding of how CMA-ES works.
https://github.com/CyberAgentAILab/cmaes
Optuna's CmaEsSampler, which uses CyberAgentAILab/cmaes under the hood, stores cmaes.CMA object in trial.system_attrs. https://github.com/optuna/optuna/blob/62d6c6bda32e17d5b634e828855523dc06da6e84/optuna/samplers/_cmaes.py#L479-L483
CmaEsSampler
CyberAgentAILab/cmaes
cmaes.CMA
trial.system_attrs
Therefore, it is possible to adapt the following script into an Optuna visualization function. https://github.com/CyberAgentAILab/cmaes/blob/main/tools/cmaes_visualizer.py
No response
cmaes-visualizer.py
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Motivation
The below animation helps understanding of how CMA-ES works.
Description
Optuna's
CmaEsSampler
, which usesCyberAgentAILab/cmaes
under the hood, storescmaes.CMA
object intrial.system_attrs
.https://github.com/optuna/optuna/blob/62d6c6bda32e17d5b634e828855523dc06da6e84/optuna/samplers/_cmaes.py#L479-L483
Therefore, it is possible to adapt the following script into an Optuna visualization function. https://github.com/CyberAgentAILab/cmaes/blob/main/tools/cmaes_visualizer.py
Alternatives (optional)
No response
Additional context (optional)
cmaes-visualizer.py
only supports 2-dimensional search space.CyberAgentAILab/cmaes
is licensed under the MIT. So the copyright notice should be included in the PR.The text was updated successfully, but these errors were encountered: