Uses of Class
at.tuwien.ifs.somtoolbox.data.SOMLibClassInformation

Packages that use SOMLibClassInformation
at.tuwien.ifs.feature.evaluation   
at.tuwien.ifs.somtoolbox.apps.helper   
at.tuwien.ifs.somtoolbox.apps.viewer This package implements the SOMViewer application; main class is SOMViewer.java. 
at.tuwien.ifs.somtoolbox.apps.viewer.fileutils   
at.tuwien.ifs.somtoolbox.data Classes in this package implement reading, storing and providing of different data needed for the SOM, e.g. 
at.tuwien.ifs.somtoolbox.layers Provides the basic classes constituting SOM-based neural networks. 
at.tuwien.ifs.somtoolbox.layers.quality Classes in this package implement various quality measures, indicating the quality of the SOM mapping. 
at.tuwien.ifs.somtoolbox.reportgenerator   
at.tuwien.ifs.somtoolbox.visualization.thematicmap Contains helper classes used by the ThematicClassMapVisualizer
 

Uses of SOMLibClassInformation in at.tuwien.ifs.feature.evaluation
 

Fields in at.tuwien.ifs.feature.evaluation declared as SOMLibClassInformation
private  SOMLibClassInformation SimilarityRetrievalGUI.classInfo
           
 

Uses of SOMLibClassInformation in at.tuwien.ifs.somtoolbox.apps.helper
 

Methods in at.tuwien.ifs.somtoolbox.apps.helper with parameters of type SOMLibClassInformation
private  void DataMapper.mapCompleteDataAfterTraining(GrowingSOM som, InputData data, SOMLibClassInformation classInfo, ArrayList<String> mappingExceptions, String labelerName, int numLabels)
           
 

Uses of SOMLibClassInformation in at.tuwien.ifs.somtoolbox.apps.viewer
 

Fields in at.tuwien.ifs.somtoolbox.apps.viewer declared as SOMLibClassInformation
private  SOMLibClassInformation GeneralUnitPNode.classInfo
           
private  SOMLibClassInformation MapPNode.classInfo
           
 

Methods in at.tuwien.ifs.somtoolbox.apps.viewer with parameters of type SOMLibClassInformation
 void GeneralUnitPNode.initClassPieCharts(Unit u, SOMLibClassInformation classInfo, double width, double height)
           
 void MapPNode.updateClassInfo(SOMLibClassInformation classInfo)
           
 

Constructors in at.tuwien.ifs.somtoolbox.apps.viewer with parameters of type SOMLibClassInformation
GeneralUnitPNode(Unit u, CommonSOMViewerStateData state, SOMLibClassInformation classInfo, SOMLibDataInformation dataInfo, double width, double height)
           
GeneralUnitPNode(Unit u, CommonSOMViewerStateData state, SOMLibClassInformation classInfo, SOMLibDataInformation dataInfo, Point[][] locations, double width, double height)
           
 

Uses of SOMLibClassInformation in at.tuwien.ifs.somtoolbox.apps.viewer.fileutils
 

Methods in at.tuwien.ifs.somtoolbox.apps.viewer.fileutils with parameters of type SOMLibClassInformation
 void ExportUtils.saveImageMap(GrowingLayer layer, int unitWidth, String fullPath, String baseFileName, String[][] visualisations, boolean isAudioSOM, SOMLibClassInformation classInfo, Color[] colors, Properties cleanDataNamesMapping, String inputDataFilesPrefix, String outputDataFilesPrefix, String htmlTemplatesDir, String imageMapTitle, boolean generateRhythmPatterns, boolean forceLinkGeneration)
           
 

Uses of SOMLibClassInformation in at.tuwien.ifs.somtoolbox.data
 

Subclasses of SOMLibClassInformation in at.tuwien.ifs.somtoolbox.data
 class ESOMClassInformation
          Reads a class information file in the ESOM Format (see http://databionic-esom.sourceforge.net/user.html#File_formats)
 

Fields in at.tuwien.ifs.somtoolbox.data declared as SOMLibClassInformation
protected  SOMLibClassInformation AbstractSOMLibSparseInputData.classInfo
          Any class label information attached to the input vectors.
 

Methods in at.tuwien.ifs.somtoolbox.data that return SOMLibClassInformation
 SOMLibClassInformation AbstractSOMLibSparseInputData.classInformation()
           
 SOMLibClassInformation InputData.classInformation()
          Gets the class info associated with this input data.
 SOMLibClassInformation SharedSOMVisualisationData.getClassInfo()
           
 

Methods in at.tuwien.ifs.somtoolbox.data with parameters of type SOMLibClassInformation
static AbstractSOMLibSparseInputData AbstractSOMLibSparseInputData.create(InputDatum[] inputData, SOMLibClassInformation classInfo)
           
private  void SOMLibSparseInputData.initFromExistingData(cern.colt.matrix.DoubleMatrix2D data, String[] dataNames, boolean norm, Random rand, TemplateVector tv, SOMLibClassInformation clsInfo)
           
 void AbstractSOMLibSparseInputData.setClassInfo(SOMLibClassInformation classInfo)
           
 void InputData.setClassInfo(SOMLibClassInformation classInfo)
           
static void InputDataWriter.writeAsESOM(SOMLibClassInformation classInfo, String fileName)
          Writes the class information as ESOM cls file.
static void InputDataWriter.writeAsSOMLib(InputData data, TemplateVector templateVector, SOMLibClassInformation classInformation, boolean tabSeparatedClassFile, String basicFileName)
          Writes the class information to a file.
static void InputDataWriter.writeAsSOMLib(InputData data, TemplateVector templateVector, SOMLibClassInformation classInformation, String basicFileName)
          Writes the class information to a file.
static void InputDataWriter.writeAsSOMLib(SOMLibClassInformation classInfo, String fileName)
          Writes the class information to a file in SOMLib format.
static void InputDataWriter.writeToFileTabSeparated(SOMLibClassInformation classInfo, String fileName)
          Writes the class information to a tab-separated file.
 

Constructors in at.tuwien.ifs.somtoolbox.data with parameters of type SOMLibClassInformation
AbstractSOMLibSparseInputData(String[] dataNames, int dim, boolean norm, Random rand, TemplateVector tv, SOMLibClassInformation clsInfo)
           
RandomAccessFileSOMLibInputData(boolean norm, Random rand, TemplateVector tv, SOMLibClassInformation clsInfo, String fileName)
           
SOMLibSparseInputData(cern.colt.matrix.DoubleMatrix2D data, String[] dataNames, boolean norm, Random rand, TemplateVector tv, SOMLibClassInformation clsInfo)
          Constructor intended for subset generation.
SOMLibSparseInputData(InputDatum[] inputData, SOMLibClassInformation classInfo)
          Constructor intended for generated synthetic data.
 

Uses of SOMLibClassInformation in at.tuwien.ifs.somtoolbox.layers
 

Methods in at.tuwien.ifs.somtoolbox.layers with parameters of type SOMLibClassInformation
private  void GrowingLayer.trainSpecial(InputData data, int numIterations, int startIteration, SOMProperties trainingProps, double initialLearnrate, double initialSigma, double expParam, double expParam2, SOMLibClassInformation classInfo, double minProbability, ProgressListener progressWriter)
           
 

Uses of SOMLibClassInformation in at.tuwien.ifs.somtoolbox.layers.quality
 

Constructors in at.tuwien.ifs.somtoolbox.layers.quality with parameters of type SOMLibClassInformation
EntropyAndPurityCalculator(List<ClusterNode> clusters, SOMLibClassInformation classInfo)
           
 

Uses of SOMLibClassInformation in at.tuwien.ifs.somtoolbox.reportgenerator
 

Fields in at.tuwien.ifs.somtoolbox.reportgenerator declared as SOMLibClassInformation
private  SOMLibClassInformation DatasetInformation.classInfo
           
 

Methods in at.tuwien.ifs.somtoolbox.reportgenerator that return SOMLibClassInformation
 SOMLibClassInformation DatasetInformation.getClassInfo()
           
 

Uses of SOMLibClassInformation in at.tuwien.ifs.somtoolbox.visualization.thematicmap
 

Fields in at.tuwien.ifs.somtoolbox.visualization.thematicmap declared as SOMLibClassInformation
(package private)  SOMLibClassInformation RegionManager.classInfo
           
(package private)  SOMLibClassInformation SOMRegion.classInfo
           
 

Constructors in at.tuwien.ifs.somtoolbox.visualization.thematicmap with parameters of type SOMLibClassInformation
RegionManager(SOMLibClassInformation classInfo, org.jfree.util.PaintList paintList, int width, int height, double min_visible_class)
           
RegionManager(SOMLibClassInformation classInfo, org.jfree.util.PaintList paintList, int width, int height, double min_visible_class, int zoom)
          Creates a new instance of SOMegions
SOMRegion(Unit unit, edu.cornell.cs.voronoi.IPnt pnt, int clssIndex, SOMLibClassInformation classInfo, org.jfree.util.PaintList paintList)
           
SOMRegion(Unit unit, SOMLibClassInformation classInfo, org.jfree.util.PaintList paintList, int zoom)
          Creates a new instance of SOMNode