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

Lite ObjDet Accuracy Fix #801

Merged
merged 2 commits into from
Oct 16, 2024
Merged

Lite ObjDet Accuracy Fix #801

merged 2 commits into from
Oct 16, 2024

Conversation

czaloom
Copy link
Collaborator

@czaloom czaloom commented Oct 15, 2024

Changes

  • The Accuracy metric is now computed over all labels rather than being per-label.

Old Schema (per-label)

{
    "type": "Accuracy",
    "value": 2 / 3,
    "parameters": {
        "score_threshold": 0.25,
        "iou_threshold": 0.25,
        "label": "0",
    },
},
{
    "type": "Accuracy",
    "value":  1 / 3,
    "parameters": {
        "score_threshold": 0.25,
        "iou_threshold": 0.25,
        "label": "1",
    },
},

New Schema (aggregate)

{
    "type": "Accuracy",
    "value": 2 / 3,
    "parameters": {
        "score_threshold": 0.25,
        "iou_threshold": 0.25,
    },
},

@czaloom czaloom self-assigned this Oct 15, 2024
@czaloom czaloom added the bug Something isn't working label Oct 15, 2024
@czaloom czaloom marked this pull request as ready for review October 15, 2024 21:55
@czaloom czaloom merged commit 19e639a into main Oct 16, 2024
15 checks passed
@czaloom czaloom deleted the czaloom-lite-objdet-fix-accuracy branch October 16, 2024 14:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants