Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Fix crashing softmax mxnet backend operator on GPUs (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeep-krishnamurthy authored May 27, 2018
1 parent 4857329 commit 546b50f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keras/backend/mxnet_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -2809,7 +2809,7 @@ def softmax(x):
# Returns
A tensor.
"""
return KerasSymbol(mx.sym.SoftmaxActivation(data=x.symbol))
return KerasSymbol(mx.sym.softmax(data=x.symbol))


@keras_mxnet_symbol
Expand Down

0 comments on commit 546b50f

Please sign in to comment.