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 support to get best run and metrics that are zero-optimized #77

Open
aslotte opened this issue Jun 8, 2020 · 1 comment
Open

Add support to get best run and metrics that are zero-optimized #77

aslotte opened this issue Jun 8, 2020 · 1 comment

Comments

@aslotte
Copy link
Owner

aslotte commented Jun 8, 2020

Is your feature request related to a problem? Please describe.
Our current IsBestRun method tries to find the best run for a given metric by finding the largest value. This works well for 99% or so of cases but e.g. log loss entropy should be closer to zero to be a good value.

Describe the solution you'd like
Add ability to define what a good run looks like for a given metric

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

@Brett-Parker
Copy link
Collaborator

Brett-Parker commented Jul 17, 2020

@aslotte what is your thinking here? To have an overload method for GetBestRun where the user can request what the metric is based on, e.g closest to 0 (ascending), closest to 1 (descending)? E.g return the log loss entropy (closest to 0). Or something else....

Current - public Run GetBestRun(Guid experimentId, string metricName)
Possible overload - public Run GetBestRun(Guid experimentId, string metricName, int closerTo)

Could also change the current method, or add our own logic, if metric = logloss = ascending etc....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants