All Projects → farmingyard → Shufflenet

farmingyard / Shufflenet

This is a fast caffe implementation of ShuffleNet.

Labels

Projects that are alternatives of or similar to Shufflenet

Caffe
Caffe for Sparse and Low-rank Deep Neural Networks
Stars: ✭ 339 (-23.99%)
Mutual labels:  caffe
Deepnetsforeo
Deep networks for Earth Observation
Stars: ✭ 393 (-11.88%)
Mutual labels:  caffe
Digits
Deep Learning GPU Training System
Stars: ✭ 4,056 (+809.42%)
Mutual labels:  caffe
Mtcnn
全平台实时人脸检测和姿态估计,提供无需任何框架实现Realtime Face Detection and Head pose estimation on Windows、Ubuntu、Mac、Android and iOS
Stars: ✭ 351 (-21.3%)
Mutual labels:  caffe
Drbox
A deep learning based algorithm to detect rotated object, for example, objects in remote sensing images
Stars: ✭ 379 (-15.02%)
Mutual labels:  caffe
Visualdl
Deep Learning Visualization Toolkit(『飞桨』深度学习可视化工具 )
Stars: ✭ 4,258 (+854.71%)
Mutual labels:  caffe
Caffe64
No dependency caffe replacement
Stars: ✭ 335 (-24.89%)
Mutual labels:  caffe
Caffe Yolov3
A real-time object detection framework of Yolov3/v4 based on caffe
Stars: ✭ 435 (-2.47%)
Mutual labels:  caffe
Vpgnet
VPGNet: Vanishing Point Guided Network for Lane and Road Marking Detection and Recognition (ICCV 2017)
Stars: ✭ 382 (-14.35%)
Mutual labels:  caffe
Gpu Rest Engine
A REST API for Caffe using Docker and Go
Stars: ✭ 412 (-7.62%)
Mutual labels:  caffe
Cnn Models
ImageNet pre-trained models with batch normalization for the Caffe framework
Stars: ✭ 355 (-20.4%)
Mutual labels:  caffe
Mini Caffe
Minimal runtime core of Caffe, Forward only, GPU support and Memory efficiency.
Stars: ✭ 373 (-16.37%)
Mutual labels:  caffe
Gocv
Go package for computer vision using OpenCV 4 and beyond.
Stars: ✭ 4,511 (+911.43%)
Mutual labels:  caffe
Densenet Caffe
DenseNet Caffe Models, converted from https://github.com/liuzhuang13/DenseNet
Stars: ✭ 350 (-21.52%)
Mutual labels:  caffe
O Cnn
O-CNN: Octree-based Convolutional Neural Networks for 3D Shape Analysis
Stars: ✭ 432 (-3.14%)
Mutual labels:  caffe
Tensorflow Open nsfw
Tensorflow Implementation of Yahoo's Open NSFW Model
Stars: ✭ 338 (-24.22%)
Mutual labels:  caffe
Centerx
This repo is implemented based on detectron2 and centernet
Stars: ✭ 403 (-9.64%)
Mutual labels:  caffe
Seefood
Inspired by HBO's Silicon Valley: SeeFood is an iOS app that uses CoreML to detect various dishes
Stars: ✭ 445 (-0.22%)
Mutual labels:  caffe
Mobilenetv2 Ssdlite
Caffe implementation of SSD and SSDLite detection on MobileNetv2, converted from tensorflow.
Stars: ✭ 435 (-2.47%)
Mutual labels:  caffe
Pytorch Caffe
load caffe prototxt and weights directly in pytorch
Stars: ✭ 407 (-8.74%)
Mutual labels:  caffe

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. 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
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].