Class TaskData

  • All Implemented Interfaces:
    Comparable<TaskData>

    public class TaskData
    extends Object
    implements Comparable<TaskData>
    This class contains all information regarding a dataset used for evaluating an algorithm.
    It includes the name, cache of the source dataset, cache of the target dataset, the mapping predicted and the gold standard
    Since:
    1.0
    Version:
    1.0
    Author:
    Mofeed Hassan (mounir@informatik.uni-leipzig.de)
    • Field Detail

      • dataName

        public String dataName
        The name of the dataset
      • source

        public ACache source
        The source data to be used by the machine learning algorithm
      • target

        public ACache target
        The target data to be used by the machine learning algorithm
      • mapping

        public AMapping mapping
        The mapping generated by the machine learning
      • training

        public AMapping training
        The training data used by the machine learning with supervised implementation type
      • pseudoFMeasure

        public PseudoFMeasure pseudoFMeasure
        The pseudo F-Measure used by the machine learning with unsupervised implementation type
      • goldStandard

        public GoldStandard goldStandard
        The Gold Standard used to evaluate the machine learning algorithm.
        It combines the reference mapping and the source and target datasets URIs
      • initialMapping

        public AMapping initialMapping