Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dgl
Commits
3386f466
"Python/vscode:/vscode.git/clone" did not exist on "6ed850e702da8296ae29c7f04c974516bf598ef5"
Unverified
Commit
3386f466
authored
Sep 04, 2019
by
VoVAllen
Committed by
GitHub
Sep 04, 2019
Browse files
[Fix test backend] Fix softmax in mxnet backend (#828)
parent
87310503
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
tests/backend/mxnet/__init__.py
tests/backend/mxnet/__init__.py
+1
-1
No files found.
tests/backend/mxnet/__init__.py
View file @
3386f466
...
...
@@ -54,7 +54,7 @@ def reduce_sum(x):
return
x
.
sum
()
def
softmax
(
x
,
dim
):
return
nd
.
softmax
(
x
,
dim
)
return
nd
.
softmax
(
x
,
axis
=
dim
)
def
spmm
(
x
,
y
):
return
nd
.
dot
(
x
,
y
)
...
...
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