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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ordinal classification metrics #2509

Open
Zhylkaaa opened this issue Apr 18, 2024 · 1 comment
Open

Ordinal classification metrics #2509

Zhylkaaa opened this issue Apr 18, 2024 · 1 comment
Labels
enhancement New feature or request New metric
Milestone

Comments

@Zhylkaaa
Copy link

Zhylkaaa commented Apr 18, 2024

馃殌 Feature

Hi I would like to contribute some basic ordinal classification metrics like "accuracy within"

Motivation

I recently discovered that my problem is an instance of ordinal classification problem. Which means that classes with labels that are close, are also semantically close (like star rating 1 and 2 start are not really far apart). And I realized that torchmatrics doesn't implement for example "accuracy within k" (or off-by k), which is stricter version of top-k accuracy. More on that can be found here: https://link.springer.com/chapter/10.1007/978-3-642-01818-3_25

Pitch

I would like to contribute at least Accuracy/Recall/Precision in "within k" version, but I am not sure if I should disrupt original classification metrics by adding more parameter. It seems like logical solution, but I am not sure how much you would be open to disrupting core metrics implementations.

Essentially, e.g. true positive definition would change from (pred == label).sum() to (torch.abs(pred - label) <= within)sum()

Alternatives

I can also implement them separately or just do it for my project :)

Additional context

In my context I am doing IVF image stage classification and stages are visually very similar, because some of the stages differ only by single cell, which might be actually hidden, since its a 2d top projection of a 3d object.

@Zhylkaaa Zhylkaaa added the enhancement New feature or request label Apr 18, 2024
Copy link

Hi! thanks for your contribution!, great first issue!

@SkafteNicki SkafteNicki added this to the future milestone Apr 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request New metric
Projects
None yet
Development

No branches or pull requests

2 participants