Original Repsitory for ONNX Model: https://github.com/onnx/models/tree/master/shufflenet
Description: Shufflenet is a Deep Convolutional Network for Classification
Original Paper: ShuffleNet: An Extremely Efficient Convolutional Neural Network for Mobile Devices
- Load as Channel First
- Input Shape: [1, 3, 224, 224]
- Output Shape: [1, 1000]
- Download Size: 5.3 MB
pip install -r requirements.txt
python3 export.py
The Tensorflow Hub Module is Exported as onnx/shufflenet/1
import tensorflow_hub as hub
module = hub.Module("onnx/shufflenet/1")
result = module(...)
The module produced is not functional. Check issue, captain-pool#3