LGMLMay 17, 2019

Be Your Own Teacher: Improve the Performance of Convolutional Neural Networks via Self Distillation

arXiv:1905.08094v11087 citations
AI Analysis

This work addresses the need for more efficient and accurate neural networks, particularly for resource-limited edge devices, though it is incremental as it builds on existing knowledge distillation methods.

The paper tackles the problem of improving convolutional neural network accuracy without increasing computational cost by proposing a self-distillation framework that transfers knowledge from deeper to shallower sections within the same network, resulting in an average accuracy enhancement of 2.65% across various models.

Convolutional neural networks have been widely deployed in various application scenarios. In order to extend the applications' boundaries to some accuracy-crucial domains, researchers have been investigating approaches to boost accuracy through either deeper or wider network structures, which brings with them the exponential increment of the computational and storage cost, delaying the responding time. In this paper, we propose a general training framework named self distillation, which notably enhances the performance (accuracy) of convolutional neural networks through shrinking the size of the network rather than aggrandizing it. Different from traditional knowledge distillation - a knowledge transformation methodology among networks, which forces student neural networks to approximate the softmax layer outputs of pre-trained teacher neural networks, the proposed self distillation framework distills knowledge within network itself. The networks are firstly divided into several sections. Then the knowledge in the deeper portion of the networks is squeezed into the shallow ones. Experiments further prove the generalization of the proposed self distillation framework: enhancement of accuracy at average level is 2.65%, varying from 0.61% in ResNeXt as minimum to 4.07% in VGG19 as maximum. In addition, it can also provide flexibility of depth-wise scalable inference on resource-limited edge devices.Our codes will be released on github soon.

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