Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix Sphinx error in ONNX file (#13251)
Browse files Browse the repository at this point in the history
  • Loading branch information
vandanavk authored and nswamy committed Nov 13, 2018
1 parent ea6ee0d commit 7baad6f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions python/mxnet/contrib/onnx/onnx2mx/import_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,13 @@ def get_model_metadata(model_file):
-------
model_metadata : dict
A dictionary object mapping various metadata to its corresponding value.
The dictionary will have the following template.
{
'input_tensor_data' : <list of tuples representing the shape of the input paramters>,
'output_tensor_data' : <list of tuples representing the shape of the output
of the model>
}
The dictionary will have the following template::
'input_tensor_data' : list of tuples representing the shape of the input paramters
'output_tensor_data' : list of tuples representing the shape of the output of the model
"""
graph = GraphProto()

try:
import onnx
except ImportError:
Expand Down

0 comments on commit 7baad6f

Please sign in to comment.