-
Notifications
You must be signed in to change notification settings - Fork 9
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
custom metrics in skill table #230
Conversation
In your example you refer to the custom metrics as python functions. Is it a requirement that the function is in scope, i.e. global scope or can you also refer to it by string, e.g. 'pr'? |
I have it implemented as python function, since that is the only way I can think of to add a custom metric. then when adding modelskill/modelskill/metrics.py Line 605 in 6dc27ec
I have not actually tried to then just use |
Ok I tried with calling a custom metric as a string and does not work, but I think that it is not too terrible. It is a reasonable compromise, considering the number of times a custom metrics needs to be actually used in the scatter plot skill table. |
I think it's great that you guys are working on custom metrics and we probably need that. Great. But if you have some metrics that you use over and over again I also think we should add these to the metrics module (in another PR). |
@jsmariegaard: that's exactly what I suggested in my last comment! As of now, this looks good to me, should be merged! |
TL;DR 😳 But @daniel-caichac-DHI why didn't you make that PR with your favorite metrics then 🤔? |
Is it peak-ratio and explained variance? |
I will do it, after this PR is merged, otherwise the "custom metric" will not be added! Which I also need for other projects |
Explained variance == |
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.
Looks great
R2 is often referred to as explained variance which is why I think it is pretty confusing with another metric with a similar name giving other results, do you have any authoritative reference other than the screenshot🤨? |
Hi,
As was discussed here #226 I needed to have some custom metrics in the skill table, so I implemented an option to "add metrics" on demand, just by appending them to the sets
DEFINED_METRICS
andMETRICS_WITH_DIMENSION
if that is the case.The code that was failing in issue/226 now works like this (I added two metrics one with units and one without for this example)