All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ciir.umass.edu.learning.neuralnet.LogiFunction Maven / Gradle / Ivy

The newest version!
/*===============================================================================
 * Copyright (c) 2010-2012 University of Massachusetts.  All Rights Reserved.
 *
 * Use of the RankLib package is subject to the terms of the software license set
 * forth in the LICENSE file included with this software, and also available at
 * http://people.cs.umass.edu/~vdang/ranklib_license.html
 *===============================================================================
 */

package ciir.umass.edu.learning.neuralnet;

/**
 * @author vdang
 */
public class LogiFunction implements TransferFunction {

    @Override
    public double compute(final double x) {
        return 1.0 / (1.0 + Math.exp(-x));
    }

    @Override
    public double computeDerivative(final double x) {
        final double output = compute(x);
        return output * (1.0 - output);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy