Uses of Interface
de.fu_berlin.ties.io.Storable

Packages that use Storable
de.fu_berlin.ties.classify This package provides functionality for classification of texts and feature vectors. 
de.fu_berlin.ties.classify.winnow This package contains the Winnow classification algorithm and related algorithms and classes. 
de.fu_berlin.ties.eval This packages provides functionality for evaluating results of classifiers and extractors. 
de.fu_berlin.ties.extract This package handles information extraction and entity recognition. 
de.fu_berlin.ties.io This package provides classes for input/output handling and for (de)serialization. 
 

Uses of Storable in de.fu_berlin.ties.classify
 

Classes in de.fu_berlin.ties.classify that implement Storable
 class Prediction
          A prediction, wrapping the predicted class and the probability of the prediction.
 

Uses of Storable in de.fu_berlin.ties.classify.winnow
 

Classes in de.fu_berlin.ties.classify.winnow that implement Storable
 class WinnowPrediction
          A prediction that also stores a raw score (activation value) and a normalized score, as calculated by the Winnow algorithm.
 

Uses of Storable in de.fu_berlin.ties.eval
 

Subinterfaces of Storable in de.fu_berlin.ties.eval
 interface AccuracyView
          Provides a read-only view on Accuracy statistics and the underlying raw counts.
 interface FeatureCountView
          Provides a read-only view on the statistics calculated by the FeatureCount class and the underlying raw counts.
 interface FMetricsView
          A read-only view of the evaluation results calculated by the FMetrics class and the underlying raw counts.
 

Classes in de.fu_berlin.ties.eval that implement Storable
 class Accuracy
          Counts true and false items and measures the accuracy: A = true / (true + false).
 class FeatureCount
          Keeps track of the average number of features and of unique features in context representations and of the average number of contexts in documents.
 class FMetrics
          This class manages and updates evaluation results, calculating precision (P), recall (R) and F-measure (F).
 class SummaryFMetrics
          FMetrics extension that additionally calculates a StatisticalSummary of the intermediate precision, recall, and F1 metrics resulting from different update operations.
 

Uses of Storable in de.fu_berlin.ties.extract
 

Classes in de.fu_berlin.ties.extract that implement Storable
 class Extraction
          Extends a Prediction by also storing the extracted text and location data.
 

Uses of Storable in de.fu_berlin.ties.io
 

Classes in de.fu_berlin.ties.io that implement Storable
 class BaseStorable
          Convenience implementations of the Storable interface that implements the BaseStorable.toString() method based on the field map created by storeFields().
 

Methods in de.fu_berlin.ties.io with parameters of type Storable
 void FieldContainer.add(Storable storable)
          Adds the representation of a Storable to this container, by calling its storeFields() method and adding the resulting field map.
static String BaseStorable.toString(Storable storable)
          Returns a String representation of a Storable object, printing all field name/value pairs in the order used to insert them into the FieldMap.
 



Copyright © 2003-2007 Christian Siefkes. All Rights Reserved.