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

aima.core.learning.neural.HardLimitActivationFunction Maven / Gradle / Ivy

Go to download

AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.

The newest version!
package aima.core.learning.neural;

/**
 * @author Ravi Mohan
 * 
 */
public class HardLimitActivationFunction implements ActivationFunction {

	public double activation(double parameter) {

		if (parameter < 0.0) {
			return 0.0;
		} else {
			return 1.0;
		}
	}

	public double deriv(double parameter) {
		return 0.0;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy