All Projects → WillCheung2016 → MobileNet_V2_Keras

WillCheung2016 / MobileNet_V2_Keras

Licence: MIT license
No description or website provided.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to MobileNet V2 Keras

LightNet
LightNet: Light-weight Networks for Semantic Image Segmentation (Cityscapes and Mapillary Vistas Dataset)
Stars: ✭ 710 (+2348.28%)
Mutual labels:  mobilenet, mobilenetv2, mobilenet-v2
mobilenet-v2-tensorflow
No description or website provided.
Stars: ✭ 66 (+127.59%)
Mutual labels:  mobilenet, mobilenetv2, mobilenet-v2
MobileNet-SSD-windows
No description or website provided.
Stars: ✭ 91 (+213.79%)
Mutual labels:  mobilenet, mobilenetv2
yolo3 tensorflow
yolo3 implement by tensorflow, including mobilenet_v1, mobilenet_v2
Stars: ✭ 48 (+65.52%)
Mutual labels:  mobilenet, mobilenetv2
Mobilenetv2 Ssdlite
Caffe implementation of SSD and SSDLite detection on MobileNetv2, converted from tensorflow.
Stars: ✭ 435 (+1400%)
Mutual labels:  mobilenet, mobilenetv2
caffe-mobilenet v2
caffe based mobilenet v2 deploy
Stars: ✭ 29 (+0%)
Mutual labels:  mobilenet, mobilenetv2
Pytorch Mobilenet V3
MobileNetV3 in pytorch and ImageNet pretrained models
Stars: ✭ 616 (+2024.14%)
Mutual labels:  mobilenet, mobilenetv2
Ssds pytorch
Multiple basenet MobileNet v1,v2, ResNet combined with SSD detection method and it's variants such as RFB, FSSD etc.
Stars: ✭ 71 (+144.83%)
Mutual labels:  mobilenet, mobilenetv2
Tensornets
High level network definitions with pre-trained weights in TensorFlow
Stars: ✭ 982 (+3286.21%)
Mutual labels:  mobilenet, mobilenetv2
Lightnet
LightNet: Light-weight Networks for Semantic Image Segmentation (Cityscapes and Mapillary Vistas Dataset)
Stars: ✭ 698 (+2306.9%)
Mutual labels:  mobilenet, mobilenetv2
Mobilenet Caffe
Caffe Implementation of Google's MobileNets (v1 and v2)
Stars: ✭ 1,217 (+4096.55%)
Mutual labels:  mobilenet, mobilenetv2
Mobilenet V2
Repository for "Inverted Residuals and Linear Bottlenecks: Mobile Networks for Classification, Detection and Segmentation".
Stars: ✭ 73 (+151.72%)
Mutual labels:  mobilenet, mobilenetv2
Object Localization
Object localization in images using simple CNNs and Keras
Stars: ✭ 130 (+348.28%)
Mutual labels:  mobilenet, mobilenetv2
RFBNet
Receptive Field Block Net for Accurate and Fast Object Detection, ECCV 2018
Stars: ✭ 1,380 (+4658.62%)
Mutual labels:  mobilenet
Maix-LogoClassifier
A simple logo classifier developed using Maixduino framework and PlatfomIO, to run on K210 MCU on Sipeed's Maix dev board.
Stars: ✭ 25 (-13.79%)
Mutual labels:  mobilenet
Voice-ML
MobileNet trained with VoxCeleb dataset and used for voice verification
Stars: ✭ 15 (-48.28%)
Mutual labels:  mobilenet
the-wandering-dreamer
The Wandering Dreamer: An Synthetic Feedback Loop
Stars: ✭ 21 (-27.59%)
Mutual labels:  mobilenet
MobilePose-Pi
MobilePose deployment for Raspberry Pi
Stars: ✭ 15 (-48.28%)
Mutual labels:  mobilenetv2
MobileNetV3-SSD-Compact-Version
MobileNetV3 SSD的简洁版本
Stars: ✭ 65 (+124.14%)
Mutual labels:  mobilenet
mobilenext
non-official PyTorch implementation of MobileNeXt from paper [Rethinking Bottleneck Structure for Efficient Mobile Network Design]
Stars: ✭ 43 (+48.28%)
Mutual labels:  mobilenet

MobileNet V2 using Keras

Author of the script: Shengdong Zhang

Email: [email protected]

This is the beta implementation of Mobilenet V2(https://128.84.21.199/pdf/1801.04381.pdf) using Keras.

Because there are still some contradiction in the model description part in the paper, this script is implemented based on the best understanding of the script author. Updates will be made as soon as it is ready or the paper is updated.

MobileNet v2 is the next version of MobileNet v1 with big improvement. Instead of directly using depthwise convolution + 1x1 convolution structure, it implements inverted residual block structure by first expanding input data into a larger dimension and then applying 3x3 depthwise convolution plus 1x1 convolution bottlenet structure to decrease dimension. Based on the experiments in the paper and my personal experience, this structure does help gradients pass through the deep network, which leverage the gradient vanishing problem.

Currently modification needed if you want to use the script for images with small sizes like CIFAR10 or MNIST. ImageNet pretrained weights will be released as soon as it is available.

Reference

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].