edu.udo.cs.yale.operator.features.transformation
Class FastICAModel

java.lang.Object
  extended by edu.udo.cs.yale.operator.AbstractIOObject
      extended by edu.udo.cs.yale.operator.ResultObjectAdapter
          extended by edu.udo.cs.yale.operator.AbstractModel
              extended by edu.udo.cs.yale.operator.IOModel
                  extended by 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.

Version:
$Id: FastICAModel.java,v 1.5 2006/09/30 00:05:31 ingomierswa Exp $
Author:
Daniel Hakenjos
See Also:
FastICA

Field Summary
private  Jama.Matrix A
           
private  java.lang.String[] attnames
           
private  Jama.Matrix K
           
private  boolean keep_attributes
           
private  double[] mean
           
private  int nr_atts
           
private  int nr_components
           
private  int nr_samples
           
private  boolean row_norm
           
private  Jama.Matrix W
           
 
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 edu.udo.cs.yale.operator.AbstractModel
equals, getExtension, getFileDescription, readModel, readModel, save, writeModel, writeModel
 
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter
addAction, getActions, getName, getVisualisationComponent, toHTML, toResultString
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject
copy, read, read, read, write, write
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface edu.udo.cs.yale.operator.ResultObject
getActions, getName, getVisualisationComponent, toResultString
 
Methods inherited from interface edu.udo.cs.yale.operator.IOObject
copy, write, write
 

Field Detail

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
Constructor Detail

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)
Method Detail

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