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

custom metrics in skill table #230

Merged
merged 11 commits into from
Jun 28, 2023
Merged

Conversation

daniel-caichac-DHI
Copy link
Collaborator

@daniel-caichac-DHI daniel-caichac-DHI commented Jun 28, 2023

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 and METRICS_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)

image
image

  • I added some tests as well

@ecomodeller
Copy link
Member

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'?

@daniel-caichac-DHI daniel-caichac-DHI requested review from jsmariegaard and removed request for jsmariegaard June 28, 2023 08:35
@daniel-caichac-DHI
Copy link
Collaborator Author

daniel-caichac-DHI commented Jun 28, 2023

I have it implemented as python function, since that is the only way I can think of to add a custom metric.
And then I am looking at the name of the function when adding it to the set. For instance if I define:
def pr(obs,model):
return mean(obs/model)

then when adding pr to the defined metrics I actually add pr.__name__
which I understand is the same that is being done here

if callable(getattr(sys.modules[__name__], func)) and not func.startswith("_")

I have not actually tried to then just use 'pr' as a str

@daniel-caichac-DHI
Copy link
Collaborator Author

daniel-caichac-DHI commented Jun 28, 2023

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.
If the number of times a custom metric is needed is too large, then a Pull Request is warranted where that metric is actually added to metrics.py.
IMO

@jsmariegaard
Copy link
Member

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).

@daniel-caichac-DHI
Copy link
Collaborator Author

daniel-caichac-DHI commented Jun 28, 2023

@jsmariegaard: that's exactly what I suggested in my last comment!
If the user finds him/herself reusing a metric time and time again, it is better to add it to metrics.py, but it is also important to have this feature of custom metrics available :)

As of now, this looks good to me, should be merged!

@jsmariegaard
Copy link
Member

@jsmariegaard: that's exactly what I suggested in my last comment! If the user finds him/herself reusing a metric time and time again, it is better to add it to metrics.py, but it is also important to have this feature of custom metrics available :)

TL;DR 😳

But @daniel-caichac-DHI why didn't you make that PR with your favorite metrics then 🤔?

@jsmariegaard
Copy link
Member

Is it peak-ratio and explained variance?

@daniel-caichac-DHI
Copy link
Collaborator Author

I will do it, after this PR is merged, otherwise the "custom metric" will not be added! Which I also need for other projects

@ecomodeller
Copy link
Member

Is it peak-ratio and explained variance?

Explained variance == $R^2$ ?

Copy link
Member

@jsmariegaard jsmariegaard left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great

@daniel-caichac-DHI
Copy link
Collaborator Author

Is it peak-ratio and explained variance?

Explained variance == R2 ?

image
It gives very different results to R2 as is implemented in modelskill
image

@daniel-caichac-DHI daniel-caichac-DHI merged commit 0082b05 into main Jun 28, 2023
@ecomodeller
Copy link
Member

Is it peak-ratio and explained variance?

Explained variance == R2 ?

image It gives very different results to R2 as is implemented in modelskill image

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🤨?

@jsmariegaard jsmariegaard deleted the custom_metrics_skilltable branch November 20, 2023 12:40
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

Successfully merging this pull request may close these issues.

3 participants