# Visual Confusion Label Tree For Image Classification

**Authors:** Yuntao Liu, Yong Dou, Ruochun Jin, Rongchun Li

arXiv: 1906.02012 · 2019-06-06

## TL;DR

This paper introduces a tree-based classifier to replace fully-connected layers in CNNs, significantly improving speed and accuracy for image classification on datasets like CIFAR-100 and ImageNet.

## Contribution

It proposes a Visual Confusion Label Tree with hierarchical SVM classifiers to enhance discriminability and reduce inference time in CNNs for real-time applications.

## Key findings

- Achieved 124x and 115x speedup on AlexNet and VGG16.
- Improved top-1 accuracy by 4.3% on CIFAR-100.
- Improved top-1 accuracy by 2.4% on ImageNet.

## Abstract

Convolution neural network models are widely used in image classification tasks. However, the running time of such models is so long that it is not the conforming to the strict real-time requirement of mobile devices. In order to optimize models and meet the requirement mentioned above, we propose a method that replaces the fully-connected layers of convolution neural network models with a tree classifier. Specifically, we construct a Visual Confusion Label Tree based on the output of the convolution neural network models, and use a multi-kernel SVM plus classifier with hierarchical constraints to train the tree classifier. Focusing on those confusion subsets instead of the entire set of categories makes the tree classifier more discriminative and the replacement of the fully-connected layers reduces the original running time. Experiments show that our tree classifier obtains a significant improvement over the state-of-the-art tree classifier by 4.3% and 2.4% in terms of top-1 accuracy on CIFAR-100 and ImageNet datasets respectively. Additionally, our method achieves 124x and 115x speedup ratio compared with fully-connected layers on AlexNet and VGG16 without accuracy decline.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1906.02012/full.md

## Figures

5 figures with captions in the complete paper: https://tomesphere.com/paper/1906.02012/full.md

## References

23 references — full list in the complete paper: https://tomesphere.com/paper/1906.02012/full.md

---
Source: https://tomesphere.com/paper/1906.02012