Package | Description |
---|---|
weka.classifiers.functions | |
weka.classifiers.functions.neural |
Modifier and Type | Class and Description |
---|---|
protected class |
MultilayerPerceptron.NeuralEnd
This inner class is used to connect the nodes in the network up to
the data that they are classifying, Note that objects of this class are
only suitable to go on the attribute side or class side of the network
and not both.
|
Modifier and Type | Class and Description |
---|---|
class |
NeuralNode
This class is used to represent a node in the neuralnet.
|
Modifier and Type | Field and Description |
---|---|
protected NeuralConnection[] |
NeuralConnection.m_inputList
The list of inputs to this unit.
|
protected NeuralConnection[] |
NeuralConnection.m_outputList
The list of outputs from this unit.
|
Modifier and Type | Method and Description |
---|---|
NeuralConnection[] |
NeuralConnection.getInputs()
Use this to get easy access to the inputs.
|
NeuralConnection[] |
NeuralConnection.getOutputs()
Use this to get easy access to the outputs.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
NeuralConnection.connect(NeuralConnection s,
NeuralConnection t)
Connects two units together.
|
protected boolean |
NeuralConnection.connectInput(NeuralConnection i,
int n)
This will connect the specified unit to be an input to this unit.
|
protected boolean |
NeuralNode.connectInput(NeuralConnection i,
int n)
This will connect the specified unit to be an input to this unit.
|
protected boolean |
NeuralConnection.connectOutput(NeuralConnection o,
int n)
This will connect the specified unit to be an output to this unit.
|
static boolean |
NeuralConnection.disconnect(NeuralConnection s,
NeuralConnection t)
Disconnects two units.
|
protected boolean |
NeuralConnection.disconnectInput(NeuralConnection i,
int n)
This will disconnect the input with the specific connection number
From this node (only on this end however).
|
protected boolean |
NeuralNode.disconnectInput(NeuralConnection i,
int n)
This will disconnect the input with the specific connection number
From this node (only on this end however).
|
protected boolean |
NeuralConnection.disconnectOutput(NeuralConnection o,
int n)
This will disconnect the output with the specific connection number
From this node (only on this end however).
|
Copyright © 2015 University of Waikato, Hamilton, NZ. All rights reserved.