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

Metrics #31

Open
davemlz opened this issue Jan 7, 2022 · 1 comment
Open

Metrics #31

davemlz opened this issue Jan 7, 2022 · 1 comment
Assignees
Labels
enhancement New feature or request help wanted Extra attention is needed

Comments

@davemlz
Copy link
Collaborator

davemlz commented Jan 7, 2022

Hi, Earth Engine community! Welcome to the list of metrics of ee_extra. Here you can find the metrics that are included, planned or in progress for ee_extra. Please feel free to pin one of the admins to add, edit or report a new metric in this list: @davemlz, @csaybar, @aazuspan @KMarkert. Note: This Issue will remain open.

Metric Status Assigned PR
MSE In Progress @aazuspan #33
RMSE In Progress @aazuspan #33
RASE In Progress @aazuspan #33
ERGAS In Progress @aazuspan #33
DIV In Progress @aazuspan #33
bias In Progress @aazuspan #33
CC In Progress @aazuspan #33
CML In Progress @aazuspan #33
CMC In Progress @aazuspan #33
UIQI In Progress @aazuspan #33
IoU In Progress @csaybar
Dice In Progress @csaybar
@davemlz davemlz added enhancement New feature or request help wanted Extra attention is needed labels Jan 7, 2022
aazuspan added a commit to aazuspan/ee_extra that referenced this issue Jan 18, 2022
aazuspan added a commit to aazuspan/ee_extra that referenced this issue Jan 18, 2022
@aazuspan aazuspan mentioned this issue Jan 18, 2022
@davemlz
Copy link
Collaborator Author

davemlz commented Jan 18, 2022

Hi, admins!

I have a question for you. As you know, we have now the Metrics module (thanks a lot to @aazuspan!) and I'm going to migrate this to eemont. The thing is: What do you think is the best way to implement the metrics in eemont?

... As static methods in a ee.Metric object? Example:

rmse = ee.Metric.RMSE(img1,img2)
mse = ee.Metric.MSE(img1,img2)

Or as extended methods of the ee.Image object? Example:

rmse = img1.RMSE(img2)
mse = img1.MSE(img2)

Or both? What do you think?

Another one could be to create an extended metric method:

rmse = img1.metric("RMSE",img2)
mse = img1.metric("MSE",img2)

@csaybar, what are your plans about this for rgeeExtra?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

4 participants