This repository is a pytorch implementation of interpretable convolutional neural network (arXiv, IEEE T-PAMI).
It is created by Wen Shen, Ping Zhao, Qiming Li, Chao Li.
- model
The project now supports three different vggs (vgg_vd_16, vgg_m, vgg_s), alexnet, resnet-18/50, and densenet-121.
You can add your own model in the /model
folder and register the model in /tools/init_model.py
.
- dataset
The project now supports vocpart, ilsvrc animalpart, cub200, celeba, voc2010_crop, helen.
You can add your own dataset in the way similar to the datasets above.
Note that in our code, we will first make the data into imdb file, so if your dataset is large, the preprocessing time may be long, and the generated imdb file will be relatively large.
The environment should have all packages in requirements.txt
$ pip install -r requirements.txt
You can see that we recommend pytorch=1.2.0, this is because we find some bugs when pytorch=1.4.0, but there is no such problem in pytorch 1.2.0. We will continue to study this problem.
Here, we take resnet-18 + voc2010_crop bird classification as an example.
To get the training results, we can run:
$ python demo.py --model resnet_18 --dataset voc2010_crop --label_name bird
After running the instructions above, you will get a new folder whose path is
/resnet_18/voc2010_crop/bird
in the /task/classification
folder.
the new folder bird
will contain a subfolder named 0
(correspond to your task_id) and three mat files (mean.mat, train.mat and val.mat).
the 0
folder stores the model of every 10 epoches and log which contains
train/val loss and train/val accuracy during network training.
You can use the trained model to calculate other metrics or to look at middle-level features.
If you use this project in your research, please cite it.
@inproceedings{zhang2018interpretable,
title={Interpretable convolutional neural networks},
author={Zhang, Quanshi and Wu, Nianying and Zhu, Song-Chun},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
pages={8827--8836},
year={2018}
}