The Encog Project

Serialized Form


Package org.encog

Class org.encog.EncogError extends java.lang.RuntimeException implements Serializable

serialVersionUID: -5909341149180956178L


Package org.encog.bot

Class org.encog.bot.BotError extends EncogError implements Serializable

serialVersionUID: 4280940104791165511L


Package org.encog.bot.spider

Class org.encog.bot.spider.SpiderError extends BotError implements Serializable

serialVersionUID: 1L


Package org.encog.bot.spider.workload

Class org.encog.bot.spider.workload.WorkloadError extends BotError implements Serializable

serialVersionUID: 1L


Package org.encog.matrix

Class org.encog.matrix.Matrix extends java.lang.Object implements Serializable

serialVersionUID: -7977897210426471675L

Serialized Fields

name

java.lang.String name
The name of this object.


description

java.lang.String description
The description for this object.


matrix

double[][] matrix
The matrix data.

Class org.encog.matrix.MatrixError extends EncogError implements Serializable

serialVersionUID: -8961386981267748942L


Package org.encog.neural

Class org.encog.neural.NeuralNetworkError extends EncogError implements Serializable

serialVersionUID: 7167228729133120101L


Package org.encog.neural.activation

Class org.encog.neural.activation.ActivationLinear extends java.lang.Object implements Serializable

serialVersionUID: -5356580554235104944L

Serialized Fields

description

java.lang.String description
The description for this object.


name

java.lang.String name
The name of this object.

Class org.encog.neural.activation.ActivationSigmoid extends java.lang.Object implements Serializable

serialVersionUID: 5622349801036468572L

Serialized Fields

description

java.lang.String description
The description of this object.


name

java.lang.String name
The name of this object.

Class org.encog.neural.activation.ActivationTANH extends java.lang.Object implements Serializable

serialVersionUID: 9121998892720207643L

Serialized Fields

description

java.lang.String description
The description of this object.


name

java.lang.String name
The name of this object.


Package org.encog.neural.data

Class org.encog.neural.data.NeuralDataError extends java.lang.RuntimeException implements Serializable

serialVersionUID: 7167228729133120101L


Package org.encog.neural.data.basic

Class org.encog.neural.data.basic.BasicNeuralData extends java.lang.Object implements Serializable

serialVersionUID: -3644304891793584603L

Serialized Fields

data

double[] data
The data held by this object.

Class org.encog.neural.data.basic.BasicNeuralDataSet extends java.lang.Object implements Serializable

serialVersionUID: -2279722928570071183L

Serialized Fields

data

java.util.List<E> data
The data held by this object.


iterators

java.util.List<E> iterators
The iterators that are currently open to this object.


description

java.lang.String description
The description for this object.


name

java.lang.String name
The name for this object.


Package org.encog.neural.data.bipolar

Class org.encog.neural.data.bipolar.BiPolarNeuralData extends java.lang.Object implements Serializable

serialVersionUID: -6082894455587612231L

Serialized Fields

data

boolean[] data
The data held by this object.


Package org.encog.neural.data.image

Class org.encog.neural.data.image.ImageNeuralData extends BasicNeuralData implements Serializable

serialVersionUID: -4645971270240180450L

Serialized Fields

image

java.awt.Image image
The image associated with this class.

Class org.encog.neural.data.image.ImageNeuralDataSet extends BasicNeuralDataSet implements Serializable

serialVersionUID: 3368190842312829906L

Serialized Fields

downsampler

java.lang.Class<T> downsampler
The downsampler to use.


height

int height
The height to downsample to.


width

int width
The width to downsample to.


findBounds

boolean findBounds
Should the bounds be found and cropped.


Package org.encog.neural.data.market

Class org.encog.neural.data.market.MarketError extends TemporalError implements Serializable

serialVersionUID: 9199552396430520659L

Class org.encog.neural.data.market.MarketNeuralDataSet extends TemporalNeuralDataSet implements Serializable

serialVersionUID: 170791819906003867L

Serialized Fields

loader

MarketLoader loader
The loader to use to obtain the data.


pointIndex

java.util.Map<K,V> pointIndex
A map between the data points and actual data.


Package org.encog.neural.data.market.loader

Class org.encog.neural.data.market.loader.LoaderError extends MarketError implements Serializable

serialVersionUID: 4525043656696667974L


Package org.encog.neural.data.temporal

Class org.encog.neural.data.temporal.TemporalError extends EncogError implements Serializable

serialVersionUID: -5534812476029464649L

Class org.encog.neural.data.temporal.TemporalNeuralDataSet extends BasicNeuralDataSet implements Serializable

serialVersionUID: 7846736117000051687L

Serialized Fields

descriptions

java.util.List<E> descriptions
Descriptions of the data needed.


points

java.util.List<E> points
The temporal points at which we have data.


inputWindowSize

int inputWindowSize
The size of the input window, this is the data being used to predict.


predictWindowSize

int predictWindowSize
The size of the prediction window.


lowSequence

int lowSequence
The lowest sequence.


highSequence

int highSequence
The highest sequence.


desiredSetSize

int desiredSetSize
How big would we like the input size to be.


inputNeuronCount

int inputNeuronCount
How many input neurons will be used.


outputNeuronCount

int outputNeuronCount
How many output neurons will there be.


startingPoint

java.util.Date startingPoint
What is the date for the first temporal point.


sequenceGrandularity

TimeUnit sequenceGrandularity
What is the granularity of the temporal points? Days, months, years, etc?


Package org.encog.neural.data.xml

Class org.encog.neural.data.xml.XMLNeuralDataSet extends BasicNeuralDataSet implements Serializable

serialVersionUID: -5960796361565902008L


Package org.encog.neural.networks

Class org.encog.neural.networks.BasicNetwork extends java.lang.Object implements Serializable

serialVersionUID: -136440631687066461L

Serialized Fields

inputLayer

Layer inputLayer
The input layer.


outputLayer

Layer outputLayer
The output layer.


layers

java.util.List<E> layers
All of the layers in the neural network.


description

java.lang.String description
The description of this object.


name

java.lang.String name
The name of this object.


Package org.encog.neural.networks.layers

Class org.encog.neural.networks.layers.BasicLayer extends java.lang.Object implements Serializable

serialVersionUID: -5682296868750703898L

Serialized Fields

fire

NeuralData fire
Results from the last time that the outputs were calculated for this layer.


matrix

Matrix matrix
The weight and threshold matrix.


next

Layer next
The next layer in the neural network.


previous

Layer previous
The previous layer in the neural network.


description

java.lang.String description
The description for this object.


name

java.lang.String name
The name for this object.

Class org.encog.neural.networks.layers.FeedforwardLayer extends BasicLayer implements Serializable

serialVersionUID: -3698708039331150031L

Serialized Fields

activationFunction

ActivationFunction activationFunction
Which activation function to use for this layer.

Class org.encog.neural.networks.layers.HopfieldLayer extends BasicLayer implements Serializable

serialVersionUID: -668012704280836167L

Class org.encog.neural.networks.layers.SOMLayer extends BasicLayer implements Serializable

serialVersionUID: -3514494417789856185L

Serialized Fields

normalizationType

NormalizeInput.NormalizationType normalizationType
The normalization type.


Package org.encog.neural.persist

Package org.encog.util.db

Class org.encog.util.db.DBError extends EncogError implements Serializable

serialVersionUID: 6101412446626697079L


The Encog Project