edu.udo.cs.yale.operator.features.transformation
Class FastICAModel
java.lang.Object
edu.udo.cs.yale.operator.AbstractIOObject
edu.udo.cs.yale.operator.ResultObjectAdapter
edu.udo.cs.yale.operator.AbstractModel
edu.udo.cs.yale.operator.IOModel
edu.udo.cs.yale.operator.features.transformation.FastICAModel
- All Implemented Interfaces:
- ComponentWeightsCreatable, IOObject, Model, ResultObject, Saveable
public class FastICAModel
- extends IOModel
- implements ComponentWeightsCreatable
This is the transformation model of the FastICA
. The number
of independent components is initially specified by the FastICA
.
Additionally you can specify parameters in the ModelApplier
.
- keep_attributes true|false If true, the original
features are not removed.
- Version:
- $Id: FastICAModel.java,v 1.5 2006/09/30 00:05:31 ingomierswa Exp $
- Author:
- Daniel Hakenjos
- See Also:
FastICA
Constructor Summary |
FastICAModel()
Default Constructor. |
FastICAModel(java.lang.String[] attnames,
int nr_components,
double[] mean,
boolean row_norm,
Jama.Matrix K,
Jama.Matrix W,
Jama.Matrix A)
|
Method Summary |
void |
apply(ExampleSet testSet)
Applies the model on the given example set. |
AttributeWeights |
getWeightsOfComponent(int component)
|
void |
readData(java.io.ObjectInputStream in)
Reads the model data from the stream. |
void |
setParameter(java.lang.String name,
java.lang.Object object)
Throws a UserError since most models should not allow additional
parameters during application. |
void |
writeData(java.io.ObjectOutputStream out)
Writes the model to a stream. |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
mean
private double[] mean
row_norm
private boolean row_norm
nr_components
private int nr_components
K
private Jama.Matrix K
W
private Jama.Matrix W
A
private Jama.Matrix A
attnames
private java.lang.String[] attnames
nr_samples
private int nr_samples
nr_atts
private int nr_atts
keep_attributes
private boolean keep_attributes
FastICAModel
public FastICAModel()
- Default Constructor.
FastICAModel
public FastICAModel(java.lang.String[] attnames,
int nr_components,
double[] mean,
boolean row_norm,
Jama.Matrix K,
Jama.Matrix W,
Jama.Matrix A)
apply
public void apply(ExampleSet testSet)
throws OperatorException
- Description copied from interface:
Model
- Applies the model on the given example set.
- Specified by:
apply
in interface Model
- Throws:
OperatorException
readData
public void readData(java.io.ObjectInputStream in)
throws java.io.IOException
- Description copied from class:
IOModel
- Reads the model data from the stream.
- Specified by:
readData
in class IOModel
- Throws:
java.io.IOException
writeData
public void writeData(java.io.ObjectOutputStream out)
throws java.io.IOException
- Description copied from class:
AbstractModel
- Writes the model to a stream.
- Specified by:
writeData
in class AbstractModel
- Throws:
java.io.IOException
setParameter
public void setParameter(java.lang.String name,
java.lang.Object object)
throws OperatorException
- Description copied from class:
AbstractModel
- Throws a UserError since most models should not allow additional
parameters during application. However, subclasses may overwrite this
method.
- Specified by:
setParameter
in interface Model
- Overrides:
setParameter
in class AbstractModel
- Throws:
OperatorException
getWeightsOfComponent
public AttributeWeights getWeightsOfComponent(int component)
throws OperatorException
- Specified by:
getWeightsOfComponent
in interface ComponentWeightsCreatable
- Throws:
OperatorException
Copyright © 2001-2006