Close Menu
    Trending
    • OpenAIs nya webbläsare ChatGPT Atlas
    • Creating AI that matters | MIT News
    • Scaling Recommender Transformers to a Billion Parameters
    • Hidden Gems in NumPy: 7 Functions Every Data Scientist Should Know
    • Is RAG Dead? The Rise of Context Engineering and Semantic Layers for Agentic AI
    • ChatGPT Gets More Personal. Is Society Ready for It?
    • Why the Future Is Human + Machine
    • Why AI Is Widening the Gap Between Top Talent and Everyone Else
    ProfitlyAI
    • Home
    • Latest News
    • AI Technology
    • Latest AI Innovations
    • AI Tools & Technologies
    • Artificial Intelligence
    ProfitlyAI
    Home » How to Measure Real Model Accuracy When Labels Are Noisy
    Artificial Intelligence

    How to Measure Real Model Accuracy When Labels Are Noisy

    ProfitlyAIBy ProfitlyAIApril 11, 2025No Comments5 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Reddit Telegram Email
    Share
    Facebook Twitter LinkedIn Pinterest Email


    fact is rarely good. From scientific measurements to human annotations used to coach deep studying fashions, floor fact at all times has some quantity of errors. ImageNet, arguably probably the most well-curated picture dataset has 0.3% errors in human annotations. Then, how can we consider predictive fashions utilizing such misguided labels?

    On this article, we discover account for errors in take a look at information labels and estimate a mannequin’s “true” accuracy.

    Instance: picture classification

    Let’s say there are 100 photos, every containing both a cat or a canine. The photographs are labeled by human annotators who’re identified to have 96% accuracy (Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ). If we practice a picture classifier on a few of this information and discover that it has 90% accuracy on a hold-out set (Aᵐᵒᵈᵉˡ), what’s the “true” accuracy of the mannequin (Aᵗʳᵘᵉ)? A few observations first:

    1. Inside the 90% of predictions that the mannequin acquired “proper,” some examples could have been incorrectly labeled, which means each the mannequin and the bottom fact are incorrect. This artificially inflates the measured accuracy.
    2. Conversely, inside the 10% of “incorrect” predictions, some may very well be circumstances the place the mannequin is true and the bottom fact label is incorrect. This artificially deflates the measured accuracy.

    Given these problems, how a lot can the true accuracy differ?

    Vary of true accuracy

    True accuracy of mannequin for completely correlated and completely uncorrelated errors of mannequin and label. Determine by writer.

    The true accuracy of our mannequin depends upon how its errors correlate with the errors within the floor fact labels. If our mannequin’s errors completely overlap with the bottom fact errors (i.e., the mannequin is incorrect in precisely the identical method as human labelers), its true accuracy is:

    Aᵗʳᵘᵉ = 0.90 — (1–0.96) = 86%

    Alternatively, if our mannequin is incorrect in precisely the alternative method as human labelers (good unfavorable correlation), its true accuracy is:

    Aᵗʳᵘᵉ = 0.90 + (1–0.96) = 94%

    Or extra typically:

    Aᵗʳᵘᵉ = Aᵐᵒᵈᵉˡ ± (1 — Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ)

    It’s vital to notice that the mannequin’s true accuracy might be each decrease and better than its reported accuracy, relying on the correlation between mannequin errors and floor fact errors.

    Probabilistic estimate of true accuracy

    In some circumstances, inaccuracies amongst labels are randomly unfold among the many examples and never systematically biased towards sure labels or areas of the function house. If the mannequin’s inaccuracies are impartial of the inaccuracies within the labels, we will derive a extra exact estimate of its true accuracy.

    Once we measure Aᵐᵒᵈᵉˡ (90%), we’re counting circumstances the place the mannequin’s prediction matches the bottom fact label. This could occur in two eventualities:

    1. Each mannequin and floor fact are right. This occurs with likelihood Aᵗʳᵘᵉ × Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ.
    2. Each mannequin and floor fact are incorrect (in the identical method). This occurs with likelihood (1 — Aᵗʳᵘᵉ) × (1 — Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ).

    Beneath independence, we will specific this as:

    Aᵐᵒᵈᵉˡ = Aᵗʳᵘᵉ × Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ + (1 — Aᵗʳᵘᵉ) × (1 — Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ)

    Rearranging the phrases, we get:

    Aᵗʳᵘᵉ = (Aᵐᵒᵈᵉˡ + Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ — 1) / (2 × Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ — 1)

    In our instance, that equals (0.90 + 0.96–1) / (2 × 0.96–1) = 93.5%, which is inside the vary of 86% to 94% that we derived above.

    The independence paradox

    Plugging in Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ as 0.96 from our instance, we get

    Aᵗʳᵘᵉ = (Aᵐᵒᵈᵉˡ — 0.04) / (0.92). Let’s plot this beneath.

    True accuracy as a perform of mannequin’s reported accuracy when floor fact accuracy = 96%. Determine by writer.

    Unusual, isn’t it? If we assume that mannequin’s errors are uncorrelated with floor fact errors, then its true accuracy Aᵗʳᵘᵉ is at all times increased than the 1:1 line when the reported accuracy is > 0.5. This holds true even when we differ Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ:

    Mannequin’s “true” accuracy as a perform of its reported accuracy and floor fact accuracy. Determine by writer.

    Error correlation: why fashions typically wrestle the place people do

    The independence assumption is essential however typically doesn’t maintain in follow. If some photos of cats are very blurry, or some small canines seem like cats, then each the bottom fact and mannequin errors are more likely to be correlated. This causes Aᵗʳᵘᵉ to be nearer to the decrease certain (Aᵐᵒᵈᵉˡ — (1 — Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ)) than the higher certain.

    Extra typically, mannequin errors are typically correlated with floor fact errors when:

    1. Each people and fashions wrestle with the identical “tough” examples (e.g., ambiguous photos, edge circumstances)
    2. The mannequin has realized the identical biases current within the human labeling course of
    3. Sure courses or examples are inherently ambiguous or difficult for any classifier, human or machine
    4. The labels themselves are generated from one other mannequin
    5. There are too many courses (and thus too many various methods of being incorrect)

    Finest practices

    The true accuracy of a mannequin can differ considerably from its measured accuracy. Understanding this distinction is essential for correct mannequin analysis, particularly in domains the place acquiring good floor fact is unattainable or prohibitively costly.

    When evaluating mannequin efficiency with imperfect floor fact:

    1. Conduct focused error evaluation: Look at examples the place the mannequin disagrees with floor fact to determine potential floor fact errors.
    2. Contemplate the correlation between errors: For those who suspect correlation between mannequin and floor fact errors, the true accuracy is probably going nearer to the decrease certain (Aᵐᵒᵈᵉˡ — (1 — Aᵍʳᵒᵘⁿᵈᵗʳᵘᵗʰ)).
    3. Receive a number of impartial annotations: Having a number of annotators may also help estimate floor fact accuracy extra reliably.

    Conclusion

    In abstract, we realized that:

    1. The vary of potential true accuracy depends upon the error charge within the floor fact
    2. When errors are impartial, the true accuracy is commonly increased than measured for fashions higher than random likelihood
    3. In real-world eventualities, errors are not often impartial, and the true accuracy is probably going nearer to the decrease certain



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticleOpenAI inför vattenstämplar på gratis genererade bilder
    Next Article Google Just Leveled Up: Meet Gemini 2.5
    ProfitlyAI
    • Website

    Related Posts

    Artificial Intelligence

    Creating AI that matters | MIT News

    October 21, 2025
    Artificial Intelligence

    Scaling Recommender Transformers to a Billion Parameters

    October 21, 2025
    Artificial Intelligence

    Hidden Gems in NumPy: 7 Functions Every Data Scientist Should Know

    October 21, 2025
    Add A Comment
    Leave A Reply Cancel Reply

    Top Posts

    OPWNAI : Cybercriminals Starting to Use ChatGPT

    April 4, 2025

    Getting AI Discovery Right | Towards Data Science

    July 24, 2025

    Bringing meaning into technology deployment | MIT News

    June 11, 2025

    User-friendly system can help developers build more efficient simulations and AI models | MIT News

    April 6, 2025

    FramePack videodiffusion som kan köras på konsument-GPU:er

    April 18, 2025
    Categories
    • AI Technology
    • AI Tools & Technologies
    • Artificial Intelligence
    • Latest AI Innovations
    • Latest News
    Most Popular

    ChatGPT styrde ett rymdskepp och överraskade forskarna

    July 5, 2025

    AI Might Take Your Job. But These Roles Could Be Your Future

    June 24, 2025

    Meta lanserar fristående AI-app som utmanar ChatGPT

    May 1, 2025
    Our Picks

    OpenAIs nya webbläsare ChatGPT Atlas

    October 22, 2025

    Creating AI that matters | MIT News

    October 21, 2025

    Scaling Recommender Transformers to a Billion Parameters

    October 21, 2025
    Categories
    • AI Technology
    • AI Tools & Technologies
    • Artificial Intelligence
    • Latest AI Innovations
    • Latest News
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us
    Copyright © 2025 ProfitlyAI All Rights Reserved.

    Type above and press Enter to search. Press Esc to cancel.