All Projects → austingg → Mobilenet V2 Caffe

austingg / Mobilenet V2 Caffe

Licence: mit
MobileNet-v2 experimental network description for caffe

Projects that are alternatives of or similar to Mobilenet V2 Caffe

Keras Oneclassanomalydetection
[5 FPS - 150 FPS] Learning Deep Features for One-Class Classification (AnomalyDetection). Corresponds RaspberryPi3. Convert to Tensorflow, ONNX, Caffe, PyTorch. Implementation by Python + OpenVINO/Tensorflow Lite.
Stars: ✭ 102 (+9.68%)
Mutual labels:  cnn, caffe, mobilenetv2
Mobilenetv2
A Keras implementation of MobileNetV2.
Stars: ✭ 277 (+197.85%)
Mutual labels:  cnn, mobilenetv2
Caffe Hrt
Heterogeneous Run Time version of Caffe. Added heterogeneous capabilities to the Caffe, uses heterogeneous computing infrastructure framework to speed up Deep Learning on Arm-based heterogeneous embedded platform. It also retains all the features of the original Caffe architecture which users deploy their applications seamlessly.
Stars: ✭ 271 (+191.4%)
Mutual labels:  cnn, caffe
Mobilenetv2 Ssdlite
Caffe implementation of SSD and SSDLite detection on MobileNetv2, converted from tensorflow.
Stars: ✭ 435 (+367.74%)
Mutual labels:  caffe, mobilenetv2
caffe-mobilenet v2
caffe based mobilenet v2 deploy
Stars: ✭ 29 (-68.82%)
Mutual labels:  caffe, mobilenetv2
Facedetection
C++ project to implement MTCNN, a perfect face detect algorithm, on different DL frameworks. The most popular frameworks: caffe/mxnet/tensorflow, are all suppported now
Stars: ✭ 255 (+174.19%)
Mutual labels:  cnn, caffe
Tf Pose Estimation
Deep Pose Estimation implemented using Tensorflow with Custom Architectures for fast inference.
Stars: ✭ 3,856 (+4046.24%)
Mutual labels:  cnn, mobile
Liteflownet2
A Lightweight Optical Flow CNN - Revisiting Data Fidelity and Regularization, TPAMI 2020
Stars: ✭ 195 (+109.68%)
Mutual labels:  cnn, caffe
Face Mask Detection
Face Mask Detection system based on computer vision and deep learning using OpenCV and Tensorflow/Keras
Stars: ✭ 774 (+732.26%)
Mutual labels:  caffe, mobilenetv2
Flownet2
FlowNet 2.0: Evolution of Optical Flow Estimation with Deep Networks
Stars: ✭ 938 (+908.6%)
Mutual labels:  cnn, caffe
Jacinto Ai Devkit
Training & Quantization of embedded friendly Deep Learning / Machine Learning / Computer Vision models
Stars: ✭ 49 (-47.31%)
Mutual labels:  cnn, caffe
MobileNet-SSD-windows
No description or website provided.
Stars: ✭ 91 (-2.15%)
Mutual labels:  caffe, mobilenetv2
Cnnforandroid
The Convolutional Neural Network(CNN) for Android
Stars: ✭ 245 (+163.44%)
Mutual labels:  cnn, caffe
In Prestissimo
A very fast neural network computing framework optimized for mobile platforms.QQ group: 676883532 【验证信息输:绝影】
Stars: ✭ 268 (+188.17%)
Mutual labels:  cnn, mobile
Raspberrypi Facedetection Mtcnn Caffe With Motion
MTCNN with Motion Detection, on Raspberry Pi with Love
Stars: ✭ 204 (+119.35%)
Mutual labels:  cnn, caffe
Caffe Mobile
Optimized (for size and speed) Caffe lib for iOS and Android with out-of-the-box demo APP.
Stars: ✭ 316 (+239.78%)
Mutual labels:  cnn, caffe
Dispnet Flownet Docker
Dockerfile and runscripts for DispNet and FlowNet1 (estimation of disparity and optical flow)
Stars: ✭ 78 (-16.13%)
Mutual labels:  cnn, caffe
Flownet2 Docker
Dockerfile and runscripts for FlowNet 2.0 (estimation of optical flow)
Stars: ✭ 137 (+47.31%)
Mutual labels:  cnn, caffe
Hidden Two Stream
Caffe implementation for "Hidden Two-Stream Convolutional Networks for Action Recognition"
Stars: ✭ 179 (+92.47%)
Mutual labels:  cnn, caffe
Liteflownet
LiteFlowNet: A Lightweight Convolutional Neural Network for Optical Flow Estimation, CVPR 2018 (Spotlight paper, 6.6%)
Stars: ✭ 474 (+409.68%)
Mutual labels:  cnn, caffe

MobileNet-v2-caffe

MobileNet-v2 experimental network description for caffe.

Update 2018-08-18

  1. Add other Mobilenet-v2 variants
  2. Suggestion: cudnn v7 has supported depthwise 3x3 when group == input_channel, you may speed up your training process by using the latest cudnn v7.

Update

  1. Google has released a series of mobilenet-v2 models. So reference pretrained model from tensorflow/model repository.
  2. MobileNet-V2 has accepted by CVPR 2018. The latest ilsvrc12 top1 accuracy is 72.0%.
  3. According to google official model, mobilenet-v2 downsampled feature map early.
  4. shortcuts are placed except the first inverted residual bottleneck sequence.

Note

There are some unclear details about the network architechture.

  1. bottleneck sequence 5's input size doesn't match its prior sequence's stride.
  2. how to deal with shortcuts or residual when the input channel and ouptut chanel are not the same. (Currently, we add shortcuts for all bottlenecks in the bottleneck sequence except the first one.)
  3. The paper says there are 19 bottlenecks, while there only 17 bottlene in Table 2.

Suggestion

  1. Strongly recommend that reimplement the paper use mxnet, pytorch, tensorflow, other than caffe, since there are optimized depthwise conv layer.
  2. Don't forget set the weight decay 4e-5.
  3. inception data augmentation helps.
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].