Uses of Class
szte.datamining.DataHandler

Packages that use DataHandler
szte.csd   
szte.csd.indicatorsel   
szte.datamining   
szte.datamining.mallet   
 

Uses of DataHandler in szte.csd
 

Methods in szte.csd that return DataHandler
 DataHandler ContentShiftDetector.buildVSM(DocumentSet docset, DataHandler train)
          Constructs the Vector Space Model according to basic parameters (phrase length, lemmatization etc.).
 DataHandler ContentShiftDetector.featuresel(DataHandler vsm)
           
 

Methods in szte.csd with parameters of type DataHandler
 DataHandler ContentShiftDetector.buildVSM(DocumentSet docset, DataHandler train)
          Constructs the Vector Space Model according to basic parameters (phrase length, lemmatization etc.).
 void CSDModel.featureExtract(DataHandler dh, java.lang.String id, Sentence sentence, int pos)
          Feature extraction for the local context classification.
 DataHandler ContentShiftDetector.featuresel(DataHandler vsm)
           
 java.util.Map<java.lang.String,java.util.Set<java.lang.String>> ContentShiftDetector.predictAllVSM(DataHandler vsm, java.lang.String label)
           
 void ContentShiftDetector.relabel(DataHandler dh, DocumentSet docset, java.lang.String label)
          We use the same Vector Space Model throughout an iteration, just its binary labeling varies according to the target labels of the original document multi-lableing task.
 void CSDModel.trainClassifier(DataHandler train)
          Trains the CSD model and stores the feature set for that.
 

Uses of DataHandler in szte.csd.indicatorsel
 

Methods in szte.csd.indicatorsel with parameters of type DataHandler
 java.util.Set<java.lang.String> MaxEntSelector.getIndicators(DataHandler vsm)
           
 java.util.Set<java.lang.String> MaxEntIterativeIndicatorSel.getIndicators(DataHandler vsm)
           
 java.util.Set<java.lang.String> IndicatorSelector.getIndicators(DataHandler vsm)
           
 

Uses of DataHandler in szte.datamining
 

Methods in szte.datamining that return DataHandler
 DataHandler DataHandler.createEmptyDataHandler()
           
abstract  DataHandler DataHandler.createSubset(java.util.Set<java.lang.String> instancesSelected, java.util.Set<java.lang.String> featuresSelected)
          creates a subset of the dataset where only the given instances and/or features are present
 

Methods in szte.datamining with parameters of type DataHandler
abstract  void DataHandler.addDataHandler(DataHandler dh)
           
 

Constructors in szte.datamining with parameters of type DataHandler
ClassificationResult(DataHandler dataHandler)
           
 

Uses of DataHandler in szte.datamining.mallet
 

Subclasses of DataHandler in szte.datamining.mallet
 class MalletDataHandler
           
 

Methods in szte.datamining.mallet that return DataHandler
 DataHandler MalletDataHandler.createSubset(java.util.Set<java.lang.String> instancesSelected, java.util.Set<java.lang.String> featuresSelected)
           
 

Methods in szte.datamining.mallet with parameters of type DataHandler
 void MalletDataHandler.addDataHandler(DataHandler dh)