Skip to content

Latest commit

 

History

History

E1_ShuffleNet

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

ShuffleNet ONNX to Tensorflow Hub Module Export

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

Module Properties

  1. Load as Channel First
  2. Input Shape: [1, 3, 224, 224]
  3. Output Shape: [1, 1000]
  4. Download Size: 5.3 MB

Steps

  • pip install -r requirements.txt
  • python3 export.py

The Tensorflow Hub Module is Exported as onnx/shufflenet/1

Load and Use Model

import tensorflow_hub as hub
module = hub.Module("onnx/shufflenet/1")
result = module(...)

Important

The module produced is not functional. Check issue, #3