org.encog.neural.neat
public enum NEATNeuronType extends Enum<NEATNeuronType>
Enum Constant and Description |
---|
Bias
Each NEAT network has one bias neuron.
|
Hidden
Hidden neurons are between the input and output.
|
Input
Input neurons receive input, they are never altered during evolution.
|
None
Not really a neuron type, as you will never see one of these in the
network.
|
Output
Output neurons provide output, they are never altered during evolution.
|
Modifier and Type | Method and Description |
---|---|
static NEATNeuronType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NEATNeuronType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NEATNeuronType Bias
public static final NEATNeuronType Hidden
public static final NEATNeuronType Input
public static final NEATNeuronType None
public static final NEATNeuronType Output
public static NEATNeuronType[] values()
for (NEATNeuronType c : NEATNeuronType.values()) System.out.println(c);
public static NEATNeuronType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2014. All Rights Reserved.