public abstract class InputFunction extends Object implements Serializable
Neuron's input function. It has two subcomponents: weightsFunction - which performs operation with input and weight vector summingFunction - which performs operation with the resulting vector from weightsFunction InputFunction implements the following behaviour: output = summingFunction(weightsFunction(inputs)) Different neuron input functions can be created by setting different weights and summing functions.
Neuron,
Serialized Form| Constructor and Description |
|---|
InputFunction() |
| Modifier and Type | Method and Description |
|---|---|
abstract double |
getOutput(List<Connection> inputConnections)
Returns ouput value of this input function for the given neuron inputs
|
public abstract double getOutput(List<Connection> inputConnections)
inputConnections - neuron's input connectionsCopyright © 2019 Neuroph Project. All rights reserved.