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

Residual controllers in RL. #1359

Merged
merged 12 commits into from
Feb 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test_core.py
  • Loading branch information
teytaud authored Feb 13, 2022
commit e45d4fd7667915906dbd8901880a622c57d57ec3
2 changes: 1 addition & 1 deletion nevergrad/benchmark/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,5 @@ def test_benchmark_chunk_resuming() -> None:
warnings.filterwarnings("ignore", category=errors.InefficientSettingsWarning)
chunk.compute()
assert (
not w and not "seeding" in w[0].message # We accept warnings due to seeding stuff.
not w and not "Seeding" in str(w[0].message) # We accept warnings due to seeding stuff.
), f"A warning was raised while it should not have (experiment could not be resumed): {w[0].message}"