Return-Path: X-Original-To: apmail-horn-dev-archive@minotaur.apache.org Delivered-To: apmail-horn-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 47DC218BAD for ; Fri, 13 Nov 2015 16:14:13 +0000 (UTC) Received: (qmail 40607 invoked by uid 500); 13 Nov 2015 16:14:13 -0000 Delivered-To: apmail-horn-dev-archive@horn.apache.org Received: (qmail 40569 invoked by uid 500); 13 Nov 2015 16:14:13 -0000 Mailing-List: contact dev-help@horn.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@horn.incubator.apache.org Delivered-To: mailing list dev@horn.incubator.apache.org Received: (qmail 40558 invoked by uid 99); 13 Nov 2015 16:14:13 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Nov 2015 16:14:13 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id A1754C4E85 for ; Fri, 13 Nov 2015 16:14:12 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.643 X-Spam-Level: X-Spam-Status: No, score=0.643 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.338, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id fTG3QfT_JykS for ; Fri, 13 Nov 2015 16:14:12 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id AA69342B20 for ; Fri, 13 Nov 2015 16:14:11 +0000 (UTC) Received: (qmail 39654 invoked by uid 99); 13 Nov 2015 16:14:11 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Nov 2015 16:14:11 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id EFB8C2C1F58 for ; Fri, 13 Nov 2015 16:14:10 +0000 (UTC) Date: Fri, 13 Nov 2015 16:14:10 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: dev@horn.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HORN-9) Add activations package and ReLU function MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HORN-9?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15004190#comment-15004190 ] ASF GitHub Bot commented on HORN-9: ----------------------------------- Github user ZJaffee commented on a diff in the pull request: https://github.com/apache/incubator-horn/pull/4#discussion_r44799975 --- Diff: src/main/java/org/apache/horn/activations/Tanh.java --- @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.horn.activations; + +import org.apache.hama.commons.math.DoubleFunction; + +/** + * Tanh function. + * + */ +public class Tanh extends DoubleFunction { + + @Override + public double apply(double value) { + return Math.tanh(value); + } + + @Override + public double applyDerivative(double value) { + return 1 - value * value; --- End diff -- Maybe I am misunderstanding, but isn't the derivative of tanh(x) equal to 1-tanh^2(x) rather than 1-x^2 > Add activations package and ReLU function > ----------------------------------------- > > Key: HORN-9 > URL: https://issues.apache.org/jira/browse/HORN-9 > Project: Apache Horn > Issue Type: New Feature > Reporter: Edward J. Yoon > Assignee: Edward J. Yoon > > Adding activation function implementations. -- This message was sent by Atlassian JIRA (v6.3.4#6332)