All Projects → iamhankai → Ghostnet.pytorch

iamhankai / Ghostnet.pytorch

[CVPR2020] GhostNet: More Features from Cheap Operations

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Ghostnet.pytorch

Ghostnet
CV backbones including GhostNet, TinyNet and TNT, developed by Huawei Noah's Ark Lab.
Stars: ✭ 1,744 (+296.36%)
Mutual labels:  convolutional-neural-networks, model-compression
Keras model compression
Model Compression Based on Geoffery Hinton's Logit Regression Method in Keras applied to MNIST 16x compression over 0.95 percent accuracy.An Implementation of "Distilling the Knowledge in a Neural Network - Geoffery Hinton et. al"
Stars: ✭ 59 (-86.59%)
Mutual labels:  convolutional-neural-networks, model-compression
Data Efficient Model Compression
Data Efficient Model Compression
Stars: ✭ 380 (-13.64%)
Mutual labels:  model-compression
Deepconvsep
Deep Convolutional Neural Networks for Musical Source Separation
Stars: ✭ 424 (-3.64%)
Mutual labels:  convolutional-neural-networks
Deep Convolution Stock Technical Analysis
Uses Deep Convolutional Neural Networks (CNNs) to model the stock market using technical analysis. Predicts the future trend of stock selections.
Stars: ✭ 407 (-7.5%)
Mutual labels:  convolutional-neural-networks
Deeplogo
A brand logo detection system using tensorflow object detection API.
Stars: ✭ 388 (-11.82%)
Mutual labels:  convolutional-neural-networks
Multi Class Text Classification Cnn
Classify Kaggle Consumer Finance Complaints into 11 classes. Build the model with CNN (Convolutional Neural Network) and Word Embeddings on Tensorflow.
Stars: ✭ 410 (-6.82%)
Mutual labels:  convolutional-neural-networks
Espnetv2
A light-weight, power efficient, and general purpose convolutional neural network
Stars: ✭ 377 (-14.32%)
Mutual labels:  convolutional-neural-networks
O Cnn
O-CNN: Octree-based Convolutional Neural Networks for 3D Shape Analysis
Stars: ✭ 432 (-1.82%)
Mutual labels:  convolutional-neural-networks
Computer Vision
Programming Assignments and Lectures for Stanford's CS 231: Convolutional Neural Networks for Visual Recognition
Stars: ✭ 408 (-7.27%)
Mutual labels:  convolutional-neural-networks
Knowledge Distillation Papers
knowledge distillation papers
Stars: ✭ 422 (-4.09%)
Mutual labels:  model-compression
Tf Pose Estimation
Deep Pose Estimation implemented using Tensorflow with Custom Architectures for fast inference.
Stars: ✭ 3,856 (+776.36%)
Mutual labels:  convolutional-neural-networks
Convnetdraw
Draw multi-layer neural network in your browser
Stars: ✭ 391 (-11.14%)
Mutual labels:  convolutional-neural-networks
Activity Recognition With Cnn And Rnn
Temporal Segments LSTM and Temporal-Inception for Activity Recognition
Stars: ✭ 415 (-5.68%)
Mutual labels:  convolutional-neural-networks
Human Activity Recognition Using Cnn
Convolutional Neural Network for Human Activity Recognition in Tensorflow
Stars: ✭ 382 (-13.18%)
Mutual labels:  convolutional-neural-networks
Arl Eegmodels
This is the Army Research Laboratory (ARL) EEGModels Project: A Collection of Convolutional Neural Network (CNN) models for EEG signal classification, using Keras and Tensorflow
Stars: ✭ 422 (-4.09%)
Mutual labels:  convolutional-neural-networks
Text Classification Models Pytorch
Implementation of State-of-the-art Text Classification Models in Pytorch
Stars: ✭ 379 (-13.86%)
Mutual labels:  convolutional-neural-networks
Graphwaveletneuralnetwork
A PyTorch implementation of "Graph Wavelet Neural Network" (ICLR 2019)
Stars: ✭ 404 (-8.18%)
Mutual labels:  convolutional-neural-networks
Deepface
Deep Learning Models for Face Detection/Recognition/Alignments, implemented in Tensorflow
Stars: ✭ 409 (-7.05%)
Mutual labels:  convolutional-neural-networks
Numpycnn
Building Convolutional Neural Networks From Scratch using NumPy
Stars: ✭ 436 (-0.91%)
Mutual labels:  convolutional-neural-networks

This repo only implements the demo code for GhostNet. Please move to the official repo for more details.

GhostNet

This repo provides demo Pytorch implementation of CVPR 2020 paper GhostNet: More Features from Cheap Operations. The TensorFlow/PyTorch implementation with pretrained model is available at here.

Requirements

The code was verified on Python3, PyTorch 1.0+.

Usage

Usage example:

import torch
from ghost_net import ghost_net

model = ghost_net(width_mult=1.0)
input = torch.randn(32,3,224,224)
y = model(input)
print(y)

Introduction of GhostNet

GhostNet: More Features from Cheap Operations. CVPR 2020. [arXiv]

By Kai Han, Yunhe Wang, Qi Tian, Jianyuan Guo, Chunjing Xu, Chang Xu.

  • Approach
  • Performance

GhostNet beats other SOTA lightweight CNNs such as MobileNetV3 and FBNet.

Citation

@inproceedings{ghostnet,
  title={GhostNet: More Features from Cheap Operations},
  author={Han, Kai and Wang, Yunhe and Tian, Qi and Guo, Jianyuan and Xu, Chunjing and Xu, Chang},
  booktitle={CVPR},
  year={2020}
}
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].