fix onnx frontend softplus bug (#413)
This commit is contained in:
Родитель
8c5b4909f4
Коммит
ec5c46519b
|
@ -217,7 +217,7 @@ def _softsign():
|
|||
|
||||
def _softplus():
|
||||
def _impl(inputs, attr, params):
|
||||
return _sym.log(_sym.exp(x) + 1)
|
||||
return _sym.log(_sym.exp(inputs[0]) + 1)
|
||||
return _impl
|
||||
|
||||
def _pad():
|
||||
|
|
Загрузка…
Ссылка в новой задаче