此仓库仅实现GhostNet的演示代码。 请移至以获取更多详细信息。 幽灵网 此存储库提供了CVPR 2020论文Pytorch演示实现。 带有预训练模型的TensorFlow / PyTorch实现可在。 要求 该代码已在Python3 PyTorch 1.0+上进行了验证。 用法 用法示例: 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) GhostNet简介 GhostNet:廉价运营带来的更多功能。 CVPR2020。 韩开,王云和,田琦,郭建元,徐春景,徐昌。 方法 表现 GhostNet击败了其他SOTA轻量级CNN,例如MobileNetV
1