Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
11050fda
Commit
11050fda
authored
Oct 10, 2018
by
Alexander Pivovarov
Committed by
Tianqi Chen
Oct 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use new onnx API to load model from file (#1874)
parent
c4ebe6bd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
nnvm/tests/python/frontend/onnx/test_forward.py
+1
-1
nnvm/tests/python/frontend/onnx/test_graph.py
+1
-1
tutorials/nnvm/from_onnx.py
+1
-1
No files found.
nnvm/tests/python/frontend/onnx/test_forward.py
View file @
11050fda
...
...
@@ -66,7 +66,7 @@ def get_caffe2_output(model, x, dtype='float32'):
def
verify_onnx_forward_impl
(
graph_file
,
data_shape
,
out_shape
):
dtype
=
'float32'
x
=
np
.
random
.
uniform
(
size
=
data_shape
)
model
=
onnx
.
load
(
graph_file
)
model
=
onnx
.
load
_model
(
graph_file
)
c2_out
=
get_caffe2_output
(
model
,
x
,
dtype
)
for
target
,
ctx
in
ctx_list
():
tvm_out
=
get_tvm_output
(
model
,
x
,
target
,
ctx
,
out_shape
,
dtype
)
...
...
nnvm/tests/python/frontend/onnx/test_graph.py
View file @
11050fda
...
...
@@ -6,7 +6,7 @@ from model_zoo import super_resolution, super_resolution_sym
from
model_zoo
import
squeezenet
as
squeezenet
def
compare_graph
(
onnx_file
,
nnvm_sym
,
ishape
):
onnx_model
=
onnx
.
load
(
onnx_file
)
onnx_model
=
onnx
.
load
_model
(
onnx_file
)
onnx_sym
,
params
=
nnvm
.
frontend
.
from_onnx
(
onnx_model
)
g1
=
nnvm
.
graph
.
create
(
onnx_sym
)
g2
=
nnvm
.
graph
.
create
(
nnvm_sym
)
...
...
tutorials/nnvm/from_onnx.py
View file @
11050fda
...
...
@@ -46,7 +46,7 @@ model_url = ''.join(['https://gist.github.com/zhreshold/',
'super_resolution_0.2.onnx'
])
download
(
model_url
,
'super_resolution.onnx'
,
True
)
# now you have super_resolution.onnx on disk
onnx_model
=
onnx
.
load
(
'super_resolution.onnx'
)
onnx_model
=
onnx
.
load
_model
(
'super_resolution.onnx'
)
# we can load the graph as NNVM compatible model
sym
,
params
=
nnvm
.
frontend
.
from_onnx
(
onnx_model
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment