[neurun] Fixed typo in LogisticNode (#4600)
author윤지영/On-Device Lab(SR)/Staff Engineer/삼성전자 <jy910.yun@samsung.com>
Wed, 6 Mar 2019 08:23:58 +0000 (17:23 +0900)
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Wed, 6 Mar 2019 08:23:58 +0000 (17:23 +0900)
This commit fixes typo in LogisticNode

Signed-off-by: Jiyoung Yun <jy910.yun@samsung.com>
runtimes/neurun/src/model/operation/LogisticNode.h

index 2c622b6..4a86199 100644 (file)
@@ -39,7 +39,7 @@ public:
 
 public:
   virtual void accept(NodeVisitor &&) const override;
-  virtual std::string getName() const override { return "Tanh"; }
+  virtual std::string getName() const override { return "Logistic"; }
 };
 
 } // namespace operation