All Projects → miaow1988 → Squeezenet_v1.2

miaow1988 / Squeezenet_v1.2

Licence: mit
Top-1 Acc=61.0% on ImageNet, without any sacrificing compared with SqueezeNet v1.1.

Projects that are alternatives of or similar to Squeezenet v1.2

Mxnet Ir
Image Retrieval Experiment Using Triplet Loss
Stars: ✭ 27 (+17.39%)
Mutual labels:  cnn, mxnet
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 (+1008.7%)
Mutual labels:  cnn, mxnet
Deeplearning
深度学习入门教程, 优秀文章, Deep Learning Tutorial
Stars: ✭ 6,783 (+29391.3%)
Mutual labels:  cnn, mxnet
Srgan Tensorflow
Tensorflow implementation of the SRGAN algorithm for single image super-resolution
Stars: ✭ 754 (+3178.26%)
Mutual labels:  cnn
Machine Learning Curriculum
💻 Make machines learn so that you don't have to struggle to program them; The ultimate list
Stars: ✭ 761 (+3208.7%)
Mutual labels:  mxnet
Anime4kcpp
A high performance anime upscaler
Stars: ✭ 887 (+3756.52%)
Mutual labels:  cnn
Cnn Fusion
采用CNN将高分辨率灰度图像和低分辨率彩色图像合成为高分辨率彩色图像的图像融合算法
Stars: ✭ 22 (-4.35%)
Mutual labels:  cnn
Self driving pi car
A deep neural network based self-driving car, that combines Lego Mindstorms NXT with the computational power of a Raspberry Pi 3.
Stars: ✭ 744 (+3134.78%)
Mutual labels:  cnn
Eda nlp
Data augmentation for NLP, presented at EMNLP 2019
Stars: ✭ 902 (+3821.74%)
Mutual labels:  cnn
Ai sudoku
GUI based Smart Sudoku Solver that tries to extract a sudoku puzzle from a photo and solve it
Stars: ✭ 830 (+3508.7%)
Mutual labels:  cnn
Quickdraw
Implementation of Quickdraw - an online game developed by Google
Stars: ✭ 805 (+3400%)
Mutual labels:  cnn
Sincnet
SincNet is a neural architecture for efficiently processing raw audio samples.
Stars: ✭ 764 (+3221.74%)
Mutual labels:  cnn
Tensorflow Tutorial
Some interesting TensorFlow tutorials for beginners.
Stars: ✭ 893 (+3782.61%)
Mutual labels:  cnn
Deepcamera
Open source face recognition on Raspberry Pi. SharpAI is open source stack for machine learning engineering with private deployment and AutoML for edge computing. DeepCamera is application of SharpAI designed for connecting computer vision model to surveillance camera. Developers can run same code on Raspberry Pi/Android/PC/AWS to boost your AI production development.
Stars: ✭ 757 (+3191.3%)
Mutual labels:  mxnet
Deepcache
Cache design for CNN on mobile
Stars: ✭ 22 (-4.35%)
Mutual labels:  cnn
Tensorflow Tutorial
TensorFlow and Deep Learning Tutorials
Stars: ✭ 748 (+3152.17%)
Mutual labels:  cnn
Openhabai
Train Neuronal networks to automate your home
Stars: ✭ 19 (-17.39%)
Mutual labels:  mxnet
Codes For Lane Detection
Learning Lightweight Lane Detection CNNs by Self Attention Distillation (ICCV 2019)
Stars: ✭ 801 (+3382.61%)
Mutual labels:  cnn
Tf cnnvis
CNN visualization tool in TensorFlow
Stars: ✭ 769 (+3243.48%)
Mutual labels:  cnn
Exemplar Cnn
Discriminative Unsupervised Feature Learning with Convolutional Neural Networks
Stars: ✭ 16 (-30.43%)
Mutual labels:  cnn

SqueezeNet v1.2

Top-1 Acc=61.0% on ImageNet, without any sacrificing compared with SqueezeNet v1.1.

We improved SqueezeNet by the linear kernel compression idea, and got 61.0% top-1 accuracy on ImageNet.

In the original paper, each Fire model, which is the fundamental building block of SqueezeNet, consists of a squeeze part (a 1x1 convolutional layer with few filters) and a expend part (a 1x1 convolutional layer concatenated with a 3x3 convolutional layer, both of them have more filters compared with the squeeze part).

We removed the RELU after the squeeze layer in each Fire model. Now the Fire model can be seen as a new model consists of the expand part only, and both layers in the expand parts are linearly compressed by a same 1x1 convolutional layer.

In this way, we achieved 3% top-1 accuracy improvement on ImageNet based on SqueezeNet v1.1, without sacrificing parameter numbers and efficiency.

Implementation Details

The network was trained by MxNet. Image size is 224x224, and the pixel mean for preprocessing is mean_r=124, mean_g=117, mean_b=104. All other hyper parameters are as same as hyper parameters used in original SqueezeNet v1.1.

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