SEFeb 8, 2021

Operation is the hardest teacher: estimating DNN accuracy looking for mispredictions

arXiv:2102.04287v124 citations
Originality Incremental advance
AI Analysis

This work is significant for practitioners and researchers in machine learning who need to efficiently identify and learn from mispredictions in DNNs to improve their models, while maintaining accurate performance estimates.

This paper introduces DeepEST, a test selection technique designed to estimate DNN accuracy while actively identifying mispredictions within an operational dataset. DeepEST achieves precision comparable to existing methods, yet it detects 5 to 30 times more mispredictions using the same test suite size across five experimental subjects.

Deep Neural Networks (DNN) are typically tested for accuracy relying on a set of unlabelled real world data (operational dataset), from which a subset is selected, manually labelled and used as test suite. This subset is required to be small (due to manual labelling cost) yet to faithfully represent the operational context, with the resulting test suite containing roughly the same proportion of examples causing misprediction (i.e., failing test cases) as the operational dataset. However, while testing to estimate accuracy, it is desirable to also learn as much as possible from the failing tests in the operational dataset, since they inform about possible bugs of the DNN. A smart sampling strategy may allow to intentionally include in the test suite many examples causing misprediction, thus providing this way more valuable inputs for DNN improvement while preserving the ability to get trustworthy unbiased estimates. This paper presents a test selection technique (DeepEST) that actively looks for failing test cases in the operational dataset of a DNN, with the goal of assessing the DNN expected accuracy by a small and ''informative'' test suite (namely with a high number of mispredictions) for subsequent DNN improvement. Experiments with five subjects, combining four DNN models and three datasets, are described. The results show that DeepEST provides DNN accuracy estimates with precision close to (and often better than) those of existing sampling-based DNN testing techniques, while detecting from 5 to 30 times more mispredictions, with the same test suite size.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes