Skip to content
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

Add more models for Gym control #1346

Merged
merged 16 commits into from
Mar 13, 2022
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ workflows:
filters:
tags:
only: /(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(\.post(0|[1-9][0-9]*))?/
- windows-pytests
# - windows-pytests
- docs-deploy:
requires:
- install
Expand Down
13 changes: 13 additions & 0 deletions nevergrad/benchmark/gymexperiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,20 @@ def ng_full_gym(
else:
controls = (
[
"noisy_semideep_neural",
"noisy_scrambled_semideep_neural", # Scrambling: why not perturbating the order of variables ?
"noisy_deep_neural",
"noisy_scrambled_deep_neural",
"neural",
# "structured_neural",
# "memory_neural",
"stackingmemory_neural",
"deep_neural",
"semideep_neural",
"noisy_neural",
"noisy_scrambled_neural",
# "scrambled_neural",
# "linear",
"resid_neural",
"resid_semideep_neural",
"resid_deep_neural",
Expand Down
5 changes: 4 additions & 1 deletion nevergrad/functions/gym/multigym.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,12 @@
"deep_extrapolatestackingmemory_neural",
"semideep_extrapolatestackingmemory_neural",
"semideep_memory_neural",
"noisy_semideep_neural",
"noisy_scrambled_semideep_neural", # Scrambling: why not perturbating the order of variables ?
"noisy_deep_neural",
"noisy_scrambled_deep_neural",
"multi_neural", # One neural net per time step.
"noisy_neural", # Do not start at 0 but at a random point.
"scrambled_neural", # Why not perturbating the order of variables ?
"noisy_scrambled_neural",
"stochastic_conformant", # Conformant planning, but still not deterministic.
]
Expand Down