All Projects → rcmalli → Keras Squeezenet

rcmalli / Keras Squeezenet

Licence: mit
SqueezeNet implementation with Keras Framework

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Keras Squeezenet

Vectorhub
Vector Hub - Library for easy discovery, and consumption of State-of-the-art models to turn data into vectors. (text2vec, image2vec, video2vec, graph2vec, bert, inception, etc)
Stars: ✭ 317 (-17.88%)
Mutual labels:  deeplearning
Pytorchzerotoall
Simple PyTorch Tutorials Zero to ALL!
Stars: ✭ 3,586 (+829.02%)
Mutual labels:  deeplearning
Kotlindl
High-level Deep Learning Framework written in Kotlin and inspired by Keras
Stars: ✭ 354 (-8.29%)
Mutual labels:  deeplearning
Mobilenet Ssd Realsense
[High Performance / MAX 30 FPS] RaspberryPi3(RaspberryPi/Raspbian Stretch) or Ubuntu + Multi Neural Compute Stick(NCS/NCS2) + RealSense D435(or USB Camera or PiCamera) + MobileNet-SSD(MobileNetSSD) + Background Multi-transparent(Simple multi-class segmentation) + FaceDetection + MultiGraph + MultiProcessing + MultiClustering
Stars: ✭ 322 (-16.58%)
Mutual labels:  deeplearning
Scalnet
A Scala wrapper for Deeplearning4j, inspired by Keras. Scala + DL + Spark + GPUs
Stars: ✭ 342 (-11.4%)
Mutual labels:  deeplearning
Pytorch Tutorials Examples And Books
PyTorch1.x tutorials, examples and some books I found 【不定期更新】整理的PyTorch 1.x 最新版教程、例子和书籍
Stars: ✭ 346 (-10.36%)
Mutual labels:  deeplearning
Trankit
Trankit is a Light-Weight Transformer-based Python Toolkit for Multilingual Natural Language Processing
Stars: ✭ 311 (-19.43%)
Mutual labels:  deeplearning
Invoice
增值税发票OCR识别,使用flask微服务架构,识别type:增值税电子普通发票,增值税普通发票,增值税专用发票;识别字段为:发票代码、发票号码、开票日期、校验码、税后金额等
Stars: ✭ 381 (-1.3%)
Mutual labels:  deeplearning
Asr theory
语音识别理论,论文和PPT
Stars: ✭ 344 (-10.88%)
Mutual labels:  deeplearning
Magnet
Deep Learning Projects that Build Themselves
Stars: ✭ 351 (-9.07%)
Mutual labels:  deeplearning
Pixellib
Visit PixelLib's official documentation https://pixellib.readthedocs.io/en/latest/
Stars: ✭ 327 (-15.28%)
Mutual labels:  deeplearning
Ner Lstm Crf
An easy-to-use named entity recognition (NER) toolkit, implemented the Bi-LSTM+CRF model in tensorflow.
Stars: ✭ 337 (-12.69%)
Mutual labels:  deeplearning
Curl
CURL: Contrastive Unsupervised Representation Learning for Sample-Efficient Reinforcement Learning
Stars: ✭ 346 (-10.36%)
Mutual labels:  deeplearning
Awesome Segmentation Saliency Dataset
A collection of some datasets for segmentation / saliency detection. Welcome to PR...😄
Stars: ✭ 315 (-18.39%)
Mutual labels:  deeplearning
Portrait Segmentation
Real-time portrait segmentation for mobile devices
Stars: ✭ 358 (-7.25%)
Mutual labels:  deeplearning
Salgan
SalGAN: Visual Saliency Prediction with Generative Adversarial Networks
Stars: ✭ 314 (-18.65%)
Mutual labels:  deeplearning
T81 558 deep learning
Washington University (in St. Louis) Course T81-558: Applications of Deep Neural Networks
Stars: ✭ 4,152 (+975.65%)
Mutual labels:  deeplearning
Awesome Cybersecurity Datasets
A curated list of amazingly awesome Cybersecurity datasets
Stars: ✭ 380 (-1.55%)
Mutual labels:  deeplearning
Text summurization abstractive methods
Multiple implementations for abstractive text summurization , using google colab
Stars: ✭ 359 (-6.99%)
Mutual labels:  deeplearning
Action Recognition Visual Attention
Action recognition using soft attention based deep recurrent neural networks
Stars: ✭ 350 (-9.33%)
Mutual labels:  deeplearning

keras-squeezenet Build Status

SqueezeNet v1.1 Implementation using Keras Functional Framework 2.0

This network model has AlexNet accuracy with small footprint (5.1 MB) Pretrained models are converted from original Caffe network.

# Most Recent One
pip install git+https://github.com/rcmalli/keras-squeezenet.git
# Release Version
pip install keras_squeezenet

News

  • Project is now up-to-date with the new Keras version (2.0).

  • Old Implementation is still available at 'keras1' branch but not updated.

Library Versions

  • Keras v2.1.1
  • Tensorflow v1.4

Example Usage

import numpy as np
from keras_squeezenet import SqueezeNet
from keras.applications.imagenet_utils import preprocess_input, decode_predictions
from keras.preprocessing import image

model = SqueezeNet()

img = image.load_img('../images/cat.jpeg', target_size=(227, 227))
x = image.img_to_array(img)
x = np.expand_dims(x, axis=0)
x = preprocess_input(x)

preds = model.predict(x)
print('Predicted:', decode_predictions(preds))

References

  1. Keras Framework

  2. SqueezeNet Official Github Repo

  3. SqueezeNet Paper

Licence

MIT License

Note: If you find this project useful, please include reference link in your work.

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