-
Notifications
You must be signed in to change notification settings - Fork 356
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
Optimization methods specifically for RL #1273
Conversation
MixDeterministicRL = ConfPortfolio(optimizers=[DiagonalCMA, PSO, GeneticDE]).set_name( | ||
"MixDeterministicRL", register=True | ||
) | ||
SpecialRL = Chaining([MixDeterministicRL, TBPSA], ["half"]).set_name("SpecialRL", register=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need both?
MixDeterministicRL = ConfPortfolio(optimizers=[DiagonalCMA, PSO, GeneticDE]).set_name( | |
"MixDeterministicRL", register=True | |
) | |
SpecialRL = Chaining([MixDeterministicRL, TBPSA], ["half"]).set_name("SpecialRL", register=True) | |
SpecialRL = Chaining([ConfPortfolio(optimizers=[DiagonalCMA, PSO, GeneticDE]), TBPSA], ["half"]).set_name("SpecialRL", register=True) |
@@ -2760,3 +2767,6 @@ def __init__( | |||
base_optimizer: base.OptCls = NGOpt, | |||
) -> None: | |||
super().__init__(_MSR, locals()) | |||
|
|||
|
|||
NGOptRL = SpecialRL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather we keep one name only if possible, why have two names for now?
As usual, adding more names means more breaking changes down the roads, so I prefer being careful.
deprecated by #1303 |
Types of changes
Motivation and Context / Related issue
Just because it looks like an excellent tool specifically for RL
How Has This Been Tested (if it applies)
Experiments on Open AI Gym and neurocontrol.
Checklist