This is an automated email from the ASF dual-hosted git repository.
zhasheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/master by this push:
new d6813ef Fix typo in lrn (#11347)
d6813ef is described below
commit d6813efa2206afb5be98c2da16dd6e2efaf44cda
Author: Junru Shao <[email protected]>
AuthorDate: Wed Jun 20 20:29:19 2018 -0700
Fix typo in lrn (#11347)
---
src/operator/nn/lrn.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/operator/nn/lrn.cc b/src/operator/nn/lrn.cc
index e86c471..6b3d7c8 100644
--- a/src/operator/nn/lrn.cc
+++ b/src/operator/nn/lrn.cc
@@ -185,7 +185,7 @@ number of kernels in the layer.
[](const NodeAttrs& attrs) {
return std::vector<std::string>{"data"};
})
-.set_attr<nnvm::FListInputNames>("FListOutputNames",
+.set_attr<nnvm::FListOutputNames>("FListOutputNames",
[](const NodeAttrs& attrs) {
return std::vector<std::string>{"output", "tmp_norm"};
})