-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
refactor: [automl/epsilon_decay] integrate robust confidence sequences #4377
Conversation
0.333333 0.491667 4 4.0 1:1:1 0:0.97 23278 | ||
0.293750 0.254167 8 8.0 0:1:1 2:0.97 13862 | ||
0.273958 0.254167 16 16.0 0:1:1 2:0.97 2249 | ||
-0.33333 -0.33333 1 1.0 0:-1:1 0:0.33 8436 |
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.
why would loss change on the first example if the CS is not used for loss?
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 had to change the rewards because the new estimator can only use rewards between 0 and 1, implying a costs between -1 and 0
@@ -4,11 +4,9 @@ | |||
|
|||
#pragma once |
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.
Simulator should definitely not be a part of the core lib. It's only used for test code and so should be in either the core tests or test_common.
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.
moved to core tests
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.
Main concern here is that simulator is test code so it should not be distributed in the core library.
No description provided.