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
f216b25e
Commit
f216b25e
authored
Jun 24, 2018
by
Tatsuya Nishiyama
Committed by
Tianqi Chen
Jun 23, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FRONTEND][MXNET] Add expand_dims supoort (#1317)
* [FRONTEND][MXNET] Add expand_dims supoort * fix lint
parent
a83e1e1e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletions
+14
-1
nnvm/python/nnvm/frontend/mxnet.py
+8
-1
nnvm/tests/python/frontend/mxnet/test_forward.py
+6
-0
No files found.
nnvm/python/nnvm/frontend/mxnet.py
View file @
f216b25e
...
...
@@ -241,6 +241,12 @@ def _elemwise_sum(inputs, _):
return
_get_nnvm_op
(
'elemwise_sum'
)(
*
inputs
,
**
new_attrs
)
def
_expand_dims
(
inputs
,
attrs
):
op_name
,
new_attrs
=
"expand_dims"
,
{}
new_attrs
[
'axis'
]
=
_required_attr
(
attrs
,
'axis'
)
return
_get_nnvm_op
(
op_name
)(
*
inputs
,
**
new_attrs
)
_identity_list
=
[
'__add_scalar__'
,
'__add_symbol__'
,
'__div_scalar__'
,
'__div_symbol__'
,
'__mul_scalar__'
,
'__mul_symbol__'
,
'__pow_scalar__'
,
'__rdiv_scalar__'
,
'__rpow_scalar__'
,
...
...
@@ -288,7 +294,8 @@ _convert_map = {
'reshape'
:
_reshape
,
'sum_axis'
:
_rename
(
'sum'
),
'UpSampling'
:
_upsampling
,
'clip'
:
_clip
'clip'
:
_clip
,
'expand_dims'
:
_expand_dims
}
def
_convert_symbol
(
op_name
,
inputs
,
attrs
,
...
...
nnvm/tests/python/frontend/mxnet/test_forward.py
View file @
f216b25e
...
...
@@ -136,6 +136,11 @@ def test_forward_split_squeeze():
mx_sym
=
mx
.
sym
.
split
(
data
,
axis
=
1
,
num_outputs
=
4
,
squeeze_axis
=
True
)
verify_mxnet_frontend_impl
(
mx_sym
,
(
1
,
4
,
2
,
1
),
(
1
,
2
,
1
))
def
test_forward_expand_dims
():
data
=
mx
.
sym
.
var
(
'data'
)
mx_sym
=
mx
.
sym
.
expand_dims
(
data
,
axis
=
1
)
verify_mxnet_frontend_impl
(
mx_sym
,
(
2
,
3
,
4
),
(
2
,
1
,
3
,
4
))
if
__name__
==
'__main__'
:
test_forward_mlp
()
test_forward_vgg
()
...
...
@@ -148,3 +153,4 @@ if __name__ == '__main__':
test_forward_clip
()
test_forward_split
()
test_forward_split_squeeze
()
test_forward_expand_dims
()
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