wind222 / DenseNetCaffe

Caffe code for Densely Connected Convolutional Networks (DenseNets)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Densely Connected Convolutional Network (DenseNet) This repository contains the caffe version code for the paper Densely Connected Convolutional Networks.

For a brief introduction of DenseNet, see our original Torch implementation.

##ImageNet Pretrained Models See our Torch implementation pages: https://github.com/liuzhuang13/DenseNet#imagenet-and-pretrained-models.

##Note This code is not the code we use to obtain the results in the original paper, the details (such as input preprocessing, data augmentation, training epochs) may be different. To reproduce the results reported in our paper, see our original Torch implementation.

##Results The default setting (L=40, k=12, dropout=0.2) in the code yields a 7.09% error rate on CIFAR10 dataset (without any data augmentation).

##Usage 0. Get the CIFAR data prepared following the [Caffe's official CIFAR tutorial] (http://caffe.berkeleyvision.org/gathered/examples/cifar10.html).

  1. make_densenet.py contains the code to generate the network and solver prototxt file. First change the data path in function make_net() and preprocessing mean file in function densenet() to your own path of corresponding data file.
  2. By default make_densenet.py generates a DenseNet with Depth L=40, Growth rate k=12 and Dropout=0.2. To experiment with different settings, change the code accordingly (see the comments in the code). Example prototxt files are already included. Use python densenet_make.py to generate new prototxt files.
  3. Change the caffe path in train.sh. Then use sh train.sh to train a DenseNet.

##Contact liuzhuangthu at gmail.com
gh349 at cornell.edu
Any discussions, suggestions and questions are welcome!

About

Caffe code for Densely Connected Convolutional Networks (DenseNets)


Languages

Language:Python 97.9%Language:Shell 2.1%