Neuroph

Uses of Class
org.neuroph.util.NeuralNetworkType

Packages that use NeuralNetworkType
org.neuroph.core This package provides base classes and basic building components for neural networks. 
org.neuroph.util This package provides various utility classes for creating neural networks, type codes, parsing vectors, etc. 
 

Uses of NeuralNetworkType in org.neuroph.core
 

Fields in org.neuroph.core declared as NeuralNetworkType
private  NeuralNetworkType NeuralNetwork.type
          Network type id (see neuroph.util.NeuralNetworkType)
 

Methods in org.neuroph.core that return NeuralNetworkType
 NeuralNetworkType NeuralNetwork.getNetworkType()
          Returns network type
 

Methods in org.neuroph.core with parameters of type NeuralNetworkType
 void NeuralNetwork.setNetworkType(NeuralNetworkType type)
          Sets network type
 

Uses of NeuralNetworkType in org.neuroph.util
 

Methods in org.neuroph.util that return NeuralNetworkType
static NeuralNetworkType NeuralNetworkType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NeuralNetworkType[] NeuralNetworkType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 


Neuroph