|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.rapidminer.operator.learner.functions.neuralnet.ActivationFunction
public abstract class ActivationFunction
This is the activation function of a neural net node. This class performs the calculation of the node's output values as well as the error calculation and the update of the weights.
| Constructor Summary | |
|---|---|
ActivationFunction()
|
|
| Method Summary | |
|---|---|
abstract double |
calculateError(InnerNode node,
Example example)
Calculates the error. |
abstract double |
calculateValue(InnerNode node,
Example example)
Calculates the value. |
abstract java.lang.String |
getTypeName()
Delivers the name of this activation function. |
void |
update(InnerNode node,
Example example,
double learningRate,
double momentum)
Calculates the update of the weights. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ActivationFunction()
| Method Detail |
|---|
public abstract java.lang.String getTypeName()
public abstract double calculateValue(InnerNode node,
Example example)
public abstract double calculateError(InnerNode node,
Example example)
public void update(InnerNode node,
Example example,
double learningRate,
double momentum)
|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||