com.enterprisemath.math.nn.Neuron Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of em-math Show documentation
Show all versions of em-math Show documentation
Advanced mathematical algorithms.
The newest version!
package com.enterprisemath.math.nn;
/**
* Definition of neuron functionality.
*
* @author radek.hecl
*/
public interface Neuron {
/**
* Returns neuron id.
*
* @return neuron id
*/
public String getId();
/**
* Returns output value.
*
* @param input input value
* @return this instance
*/
public double getOutput(double input);
}