public enum NeuralNetworkType extends Enum<NeuralNetworkType>
Enum Constant and Description |
---|
ADALINE |
BAM |
BOLTZMAN |
COMPETITIVE |
COUNTERPROPAGATION |
HOPFIELD |
INSTAR |
INSTAR_OUTSTAR |
KOHONEN |
MAXNET |
MULTI_LAYER_PERCEPTRON |
NEURO_FUZZY_REASONER |
OUTSTAR |
PCA_NETWORK |
PERCEPTRON |
RBF_NETWORK |
RECOMMENDER |
RECTIFIER |
SUPERVISED_HEBBIAN_NET |
UNSUPERVISED_HEBBIAN_NET |
Modifier and Type | Method and Description |
---|---|
String |
getTypeLabel() |
static NeuralNetworkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NeuralNetworkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NeuralNetworkType ADALINE
public static final NeuralNetworkType PERCEPTRON
public static final NeuralNetworkType MULTI_LAYER_PERCEPTRON
public static final NeuralNetworkType HOPFIELD
public static final NeuralNetworkType KOHONEN
public static final NeuralNetworkType NEURO_FUZZY_REASONER
public static final NeuralNetworkType SUPERVISED_HEBBIAN_NET
public static final NeuralNetworkType UNSUPERVISED_HEBBIAN_NET
public static final NeuralNetworkType COMPETITIVE
public static final NeuralNetworkType MAXNET
public static final NeuralNetworkType INSTAR
public static final NeuralNetworkType OUTSTAR
public static final NeuralNetworkType RBF_NETWORK
public static final NeuralNetworkType BAM
public static final NeuralNetworkType BOLTZMAN
public static final NeuralNetworkType COUNTERPROPAGATION
public static final NeuralNetworkType INSTAR_OUTSTAR
public static final NeuralNetworkType PCA_NETWORK
public static final NeuralNetworkType RECOMMENDER
public static final NeuralNetworkType RECTIFIER
public static NeuralNetworkType[] values()
for (NeuralNetworkType c : NeuralNetworkType.values()) System.out.println(c);
public static NeuralNetworkType 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 nullpublic String getTypeLabel()
Copyright © 2019 Neuroph Project. All rights reserved.