This is an automated email from the ASF dual-hosted git repository.
mboehm7 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemml.git
The following commit(s) were added to refs/heads/master by this push:
new 809c025 [MINOR] Fix typo internal builtin function names (sigmoid)
809c025 is described below
commit 809c02580570e136e2d150400abf184cbff01a74
Author: Matthias Boehm <[email protected]>
AuthorDate: Wed Apr 1 19:18:42 2020 +0200
[MINOR] Fix typo internal builtin function names (sigmoid)
---
src/main/java/org/apache/sysds/common/Builtins.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/sysds/common/Builtins.java
b/src/main/java/org/apache/sysds/common/Builtins.java
index d260d35..7220198 100644
--- a/src/main/java/org/apache/sysds/common/Builtins.java
+++ b/src/main/java/org/apache/sysds/common/Builtins.java
@@ -154,7 +154,7 @@ public enum Builtins {
SAMPLE("sample", false),
SD("sd", false),
SEQ("seq", false),
- SIGMOD("sigmoid", true), // 1 / (1 + exp(-X))
+ SIGMOID("sigmoid", true), // 1 / (1 + exp(-X))
SIGN("sign", false),
SIN("sin", false),
SINH("sinh", false),