Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/farmingyard/ShuffleNet

This is a fast caffe implementation of ShuffleNet.
https://github.com/farmingyard/ShuffleNet

caffe shufflenet shufflenet-v2

Last synced: about 1 month ago
JSON representation

This is a fast caffe implementation of ShuffleNet.

Awesome Lists containing this project

README

        

# ShuffleNet
This is caffe implementation of ShuffleNet, For details, please read the original paper:
["ShuffleNet: An Extremely Efficient Convolutional
Neural Network for Mobile Devices" by Xiangyu Zhang et. al. 2017](https://arxiv.org/pdf/1707.01083.pdf).
This code is based on camel007's implementation(https://github.com/camel007/Caffe-ShuffleNet), but I recode the cuda file for acceleration.

#### Update: add caffe deploy file of shufflenet v2 1x.

## How to use?
#### caffe.proto:
```
message LayerParameter {
...
optional ShuffleChannelParameter shuffle_channel_param = 164;
...
}
...
message ShuffleChannelParameter {
optional uint32 group = 1[default = 1]; // The number of group
}
```