infomat.vectorspace.weighting
Class TFWeighter

java.lang.Object
  extended by infomat.vectorspace.weighting.Weighter
      extended by infomat.vectorspace.weighting.TFWeighter
All Implemented Interfaces:
HasProperties

public class TFWeighter
extends Weighter

A class for weighting of a IMatrix. Currently works in a specific direction! Considers rows to be objects (texts) and columns to be features (words).


Field Summary
private  int localRowWeight
           
 
Fields inherited from class infomat.vectorspace.weighting.Weighter
properties
 
Constructor Summary
TFWeighter()
           
TFWeighter(Properties properties)
           
 
Method Summary
 Properties getDefaultProperties()
           
 Properties getProperties()
           
 java.lang.Object getPropertyValue(java.lang.String name)
           
 java.lang.String getWeighterName()
          Returns a String that identifies the Weighter.
static java.util.HashMap<IObject,java.util.HashMap<IObject,java.lang.Float>> localWeightInGroupByGroup(IObjectGroup objectGroup, IObjectGroup representationGroup, IMatrix matrix, boolean row, Properties properties)
          The central local weighter.
 void setProperties(Properties properties)
           
 void setProperty(java.lang.String name, java.lang.Object value)
           
static java.util.HashMap<IObject,java.lang.Float> totalLocalWeightInGroupByGroup(IObjectGroup objectGroup, IObjectGroup representationGroup, IMatrix matrix, boolean row, Properties properties)
          Returns the sum of the local weight as calculated in #localWeightInGroupByGroup.
 void weight(IMatrix matrix)
          Weight the IMatrix (the whole matrix, which may be more than the current IObjectGroupings, the picture).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

localRowWeight

private int localRowWeight
Constructor Detail

TFWeighter

public TFWeighter()

TFWeighter

public TFWeighter(Properties properties)
Method Detail

getDefaultProperties

public Properties getDefaultProperties()

getPropertyValue

public java.lang.Object getPropertyValue(java.lang.String name)

setProperty

public void setProperty(java.lang.String name,
                        java.lang.Object value)
                 throws PropertyNotFoundException
Throws:
PropertyNotFoundException

getProperties

public Properties getProperties()

setProperties

public void setProperties(Properties properties)

getWeighterName

public java.lang.String getWeighterName()
Description copied from class: Weighter
Returns a String that identifies the Weighter.

Specified by:
getWeighterName in class Weighter

weight

public void weight(IMatrix matrix)
Weight the IMatrix (the whole matrix, which may be more than the current IObjectGroupings, the picture).

Specified by:
weight in class Weighter

totalLocalWeightInGroupByGroup

public static java.util.HashMap<IObject,java.lang.Float> totalLocalWeightInGroupByGroup(IObjectGroup objectGroup,
                                                                                        IObjectGroup representationGroup,
                                                                                        IMatrix matrix,
                                                                                        boolean row,
                                                                                        Properties properties)
Returns the sum of the local weight as calculated in #localWeightInGroupByGroup.


localWeightInGroupByGroup

public static java.util.HashMap<IObject,java.util.HashMap<IObject,java.lang.Float>> localWeightInGroupByGroup(IObjectGroup objectGroup,
                                                                                                              IObjectGroup representationGroup,
                                                                                                              IMatrix matrix,
                                                                                                              boolean row,
                                                                                                              Properties properties)
The central local weighter. The elements of the first group are considered objects, and those of the second their representation. The objects in the second are weighted accoring to occurences for each object in the first. For text-word: the words are weighted locally for each text. OBS. Only works in row-col order yet!!!

Parameters:
row - Wether the first group is along the rows of the matrix.