|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectde.htwdd.rosenkoenig.neuro.net.training.Pattern
public class Pattern
Stores patterns to train feed forward neural networks.
A pattern consists of a double array representing the net input and a double array representing
the net's desired output.
| Field Summary | |
|---|---|
private double[] |
desiredOutput
|
private double[] |
inputs
|
| Constructor Summary | |
|---|---|
Pattern(double[] input,
double[] desiredOutput)
|
|
| Method Summary | |
|---|---|
double[] |
getDesiredOutput()
Getter of the property desiredOutput |
double[] |
getInput()
Getter of the property input |
void |
setDesiredOutput(double[] desiredOutput)
Setter of the property desiredOutput |
void |
setInput(double[] input)
Setter of the property input |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
private double[] inputs
private double[] desiredOutput
| Constructor Detail |
|---|
public Pattern(double[] input,
double[] desiredOutput)
| Method Detail |
|---|
public double[] getInput()
public double[] getDesiredOutput()
public void setInput(double[] input)
input - The inputs to set.public void setDesiredOutput(double[] desiredOutput)
desiredOutput - The desiredOutput to set.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||