Tensorflow code and models for the paper:
Large Scale Fine-Grained Categorization and Domain-Specific Transfer Learning\ Yin Cui, Yang Song, Chen Sun, Andrew Howard, Serge Belongie\ CVPR 2018
This repository contains code and pre-trained models used in the paper and 2 demos to demonstrate: 1) the importance of pre-training data on transfer learning; 2) how to calculate domain similarity between source domain and target domain.
Notice that we used a mini validation set (./inat_minival.txt) contains 9,697 images that are randomly selected from the original iNaturalist 2017 validation set. The rest of valdiation images were combined with the original training set to train our model in the paper. There are 665,473 training images in total.
git clone --recursive https://github.com/richardaecn/cvpr18-inaturalist-transfer.git
In the paper, we used data from 9 publicly available datasets:
We provide a download link that includes the entire CUB-200-2011 dataset and data splits for the rest of 8 datasets. The provided link contains sufficient data for this repo. If you would like to use other 8 datasets, please download them from the official websites and put them in the corresponding subfolders under './data'.
The models were trained using TensorFlow-Slim. We implemented Squeeze-and-Excitation Networks (SENet) under './slim'. The pre-trained models can be downloaded from the following links:
Network | Pre-trained Data | Input Size | Download Link |
---|---|---|---|
Inception-V3 | ImageNet | 299 | link |
Inception-V3 | iNat2017 | 299 | link |
Inception-V3 | iNat2017 | 448 | link |
Inception-V3 | iNat2017 | 299 -> 560 FT1 | link |
Inception-V3 | ImageNet + iNat2017 | 299 | link |
Inception-V3 SE | ImageNet + iNat2017 | 299 | link |
Inception-V4 | iNat2017 | 448 | link |
Inception-V4 | iNat2017 | 448 -> 560 FT2 | link |
Inception-ResNet-V2 | ImageNet + iNat2017 | 299 | link |
Inception-ResNet-V2 SE | ImageNet + iNat2017 | 299 | link |
ResNet-V2 50 | ImageNet + iNat2017 | 299 | link |
ResNet-V2 101 | ImageNet + iNat2017 | 299 | link |
ResNet-V2 152 | ImageNet + iNat2017 | 299 | link |
1 This model was trained with 299 input size on train + 90% val and then fine-tuned with 560 input size on 90% val.
2 This model was trained with 448 input size on train + 90% val and then fine-tuned with 560 input size on 90% val.
TensorFlow Hub also provides a pre-trained Inception-V3 299 on iNat2017 original training set here.
Run the following Python script to extract feature:
python feature_extraction.py
To run this script, you need to download the checkpoint of Inception-V3 299 trained on iNat2017. The dataset and pre-trained model can be modified in the script.
We provide a download link that includes features used in the domos of this repo.
This demo shows the importance of pre-training data on transfer learning. Based on features extracted from an Inception-V3 pre-trained on iNat2017, we are able to achieve 89.9% classification accuracy on CUB-200-2011 with the simple logistic regression, outperforming most state-of-the-art methods.
LinearClassifierDemo.ipynb
DomainSimilarityDemo.ipynb
python convert_dataset.py --dataset_name=cub_200 --num_shards=10
CUDA_VISIBLE_DEVICES=0 ./train.sh
CUDA_VISIBLE_DEVICES=1 ./eval.sh
tensorboard --logdir=./checkpoints/cub_200/ --port=6006
If you find our work helpful in your research, please cite it as:
@inproceedings{Cui2018iNatTransfer,
title = {Large Scale Fine-Grained Categorization and Domain-Specific Transfer Learning},
author = {Yin Cui, Yang Song, Chen Sun, Andrew Howard, Serge Belongie},
booktitle={CVPR},
year={2018}
}