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

com.enterprisemath.math.nn.Neuron Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy