All Projects → gsp-27 → pytorch_Squeezenet

gsp-27 / pytorch_Squeezenet

Licence: other
Implementation of Squeezenet in pytorch, pretrained models on Cifar 10 data to come

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pytorch Squeezenet

Tensorrtx
Implementation of popular deep learning networks with TensorRT network definition API
Stars: ✭ 3,456 (+3918.6%)
Mutual labels:  squeezenet
Pytorch Cifar100
Practice on cifar100(ResNet, DenseNet, VGG, GoogleNet, InceptionV3, InceptionV4, Inception-ResNetv2, Xception, Resnet In Resnet, ResNext,ShuffleNet, ShuffleNetv2, MobileNet, MobileNetv2, SqueezeNet, NasNet, Residual Attention Network, SENet, WideResNet)
Stars: ✭ 2,423 (+2717.44%)
Mutual labels:  squeezenet
Imageai
A python library built to empower developers to build applications and systems with self-contained Computer Vision capabilities
Stars: ✭ 6,734 (+7730.23%)
Mutual labels:  squeezenet
BabelCamera
Find out how to describe the things around you in another language with Core ML and the Vision framework in iOS 11! 👀
Stars: ✭ 13 (-84.88%)
Mutual labels:  squeezenet
dd performances
DeepDetect performance sheet
Stars: ✭ 92 (+6.98%)
Mutual labels:  squeezenet
ncnn-android-squeezenet
The squeezenet image classification android example
Stars: ✭ 100 (+16.28%)
Mutual labels:  squeezenet
NsfwSqueezenet
Caffe Squeezenet model for binary classification of pornographic/non-pornographic material
Stars: ✭ 57 (-33.72%)
Mutual labels:  squeezenet
DL.EyeSight
Mainly use SSD, YOLO and other models to solve the target detection problem in image and video !
Stars: ✭ 48 (-44.19%)
Mutual labels:  squeezenet
pytorch-android
[EXPERIMENTAL] Demo of using PyTorch 1.0 inside an Android app. Test with your own deep neural network such as ResNet18/SqueezeNet/MobileNet v2 and a phone camera.
Stars: ✭ 105 (+22.09%)
Mutual labels:  squeezenet
Simplified SqueezeNet
An improved version of SqueezeNet networks https://github.com/DeepScale/SqueezeNet
Stars: ✭ 38 (-55.81%)
Mutual labels:  squeezenet
MobilePose
Light-weight Single Person Pose Estimator
Stars: ✭ 588 (+583.72%)
Mutual labels:  squeezenet

Pytorch Squeeznet

Pytorch implementation of Squeezenet model as described in https://arxiv.org/abs/1602.07360 on cifar-10 Data.

The definition of Squeezenet model is present model.py. The training procedure resides in the file main.py

Command to train the Squeezenet model on CIFAR 10 data is:

python main.py --batch-size 32 --epoch 10

Other options which can be used are specified in main.py Eg: if you want to use a pretrained_model

python main.py --batch-size 32 --epoch 10 --model_name "pretrained model"

I am currently using SGD for training : learning rate and weight decay are currently updated using a 55 epoch learning rule, this usually gives good performance, but if you want to use something of your own, you can specify it by passing learning_rate and weight_decay parameter like so

python main.py --batch-size 32 --epoch 10 --learning_rate 1e-3 --epoch_55
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].