# ghostnet.pytorch **Repository Path**: Zhou_Chuanyou/ghostnet.pytorch ## Basic Information - **Project Name**: ghostnet.pytorch - **Description**: [CVPR2020] GhostNet: More Features from Cheap Operations - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # GhostNet This repo provides Pytorch implementation of CVPR 2020 paper [GhostNet: More Features from Cheap Operations](https://arxiv.org/abs/1911.11907). The TensorFlow implementation with pretrained model is available at [here](https://github.com/iamhankai/ghostnet). ### 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]](https://arxiv.org/abs/1911.11907) By Kai Han, Yunhe Wang, Qi Tian, Jianyuan Guo, Chunjing Xu, Chang Xu. - **Approach**