AIMay 10, 2024

Fast Evaluation of DNN for Past Dataset in Incremental Learning

arXiv:2405.06296v1
Originality Incremental advance
AI Analysis

This addresses a practical issue for systems using DNNs in incremental learning scenarios, though it is incremental as it builds on existing gradient-based techniques.

The paper tackles the problem of efficiently evaluating how incremental training affects a deep neural network's accuracy on past datasets, proposing a method that uses pre-training gradients to estimate accuracy changes in constant time.

During the operation of a system including a deep neural network (DNN), new input values that were not included in the training dataset are given to the DNN. In such a case, the DNN may be incrementally trained with the new input values; however, that training may reduce the accuracy of the DNN in regard to the dataset that was previously obtained and used for the past training. It is necessary to evaluate the effect of the additional training on the accuracy for the past dataset. However, evaluation by testing all the input values included in the past dataset takes time. Therefore, we propose a new method to quickly evaluate the effect on the accuracy for the past dataset. In the proposed method, the gradient of the parameter values (such as weight and bias) for the past dataset is extracted by running the DNN before the training. Then, after the training, its effect on the accuracy with respect to the past dataset is calculated from the gradient and update differences of the parameter values. To show the usefulness of the proposed method, we present experimental results with several datasets. The results show that the proposed method can estimate the accuracy change by additional training in a constant time.

Foundations

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

Your Notes