Uses of Enum
de.uni_mannheim.informatik.dws.melt.matching_data.GoldStandardCompleteness
Package
Description
This package contains the classes to support tracks and test cases.
-
Uses of GoldStandardCompleteness in de.uni_mannheim.informatik.dws.melt.matching_data
Modifier and TypeFieldDescriptionprivate GoldStandardCompleteness
TestCase.goldStandardCompleteness
How complete is the gold standard for this test case.protected GoldStandardCompleteness
Track.goldStandardCompleteness
Completeness of the gold standard for all test cases.Modifier and TypeMethodDescriptionTestCase.getGoldStandardCompleteness()
static GoldStandardCompleteness
Returns the enum constant of this type with the specified name.static GoldStandardCompleteness[]
GoldStandardCompleteness.values()
Returns an array containing the constants of this enum type, in the order they are declared.Modifier and TypeMethodDescriptionLocalTrack.addTestCase
(String name, File source, File target, File reference, File inputAlignment, GoldStandardCompleteness goldStandardCompleteness, File parameters, File evaluationExclusionAlignment) LocalTrack.addTestCase
(String name, URI source, URI target, URI reference, URI inputAlignment, GoldStandardCompleteness goldStandardCompleteness, URI parameters, URI evaluationExclusionAlignment) ModifierConstructorDescriptionLocalTrack
(String name, String version, GoldStandardCompleteness goldStandardCompleteness) TestCases needs to be added after generating this track (when using this constructor).LocalTrack
(String name, String version, File folderToTestCases, GoldStandardCompleteness goldStandardCompleteness) Default ConstructorLocalTrack
(String name, String version, String folderToTestCasesPath, GoldStandardCompleteness goldStandardCompleteness) Default ConstructorLocalTrack
(String name, String version, List<TestCase> testCases, GoldStandardCompleteness goldStandardCompleteness) Default ConstructorSealsTrack
(String tdrsLocation, String testDataCollectionName, String testDataVersionNumber, boolean useDuplicateFreeStorageLayout, GoldStandardCompleteness goldStandardCompleteness) SealsTrack
(String tdrsLocation, String testDataCollectionName, String testDataVersionNumber, String nicerLocation, boolean useDuplicateFreeStorageLayout, GoldStandardCompleteness goldStandardCompleteness) TestCase
(String name, URI source, URI target, URI reference, Track track, URI inputAlignment, GoldStandardCompleteness goldStandardCompleteness, URI parameters, URI evaluationExclusionAlignment) Constructorprotected
Track
(String remoteLocation, String name, String version, boolean useDuplicateFreeStorageLayout, GoldStandardCompleteness goldStandardCompleteness) protected
Track
(String remoteLocation, String name, String version, boolean useDuplicateFreeStorageLayout, GoldStandardCompleteness goldStandardCompleteness, boolean skipTestsWithoutRefAlign) -
Uses of GoldStandardCompleteness in de.uni_mannheim.informatik.dws.melt.matching_eval.evaluator.metric.cm
Modifier and TypeMethodDescriptionConfusionMatrixMetric.compute
(Alignment referenceAlignment, Alignment systemAlignment, GoldStandardCompleteness gsCompleteness) ConfusionMatrixMetric.compute
(Alignment referenceAlignment, Alignment systemAlignment, GoldStandardCompleteness gsCompleteness, Alignment evaluationExclusionAlignment) private ConfusionMatrix
ConfusionMatrixMetric.computeForPartialGoldStandard
(Alignment referenceAlignment, Alignment systemAlignment, GoldStandardCompleteness gsCompleteness) Calculate the confusion matrix under the premises that the gold standard is incomplete, i.e., partial. -
Uses of GoldStandardCompleteness in de.uni_mannheim.informatik.dws.melt.matching_eval.paramtuning
Modifier and TypeMethodDescriptionstatic double
ConfidenceFinder.getBestConfidenceForFmeasure
(Alignment reference, Alignment systemAlignment, GoldStandardCompleteness gsCompleteness) If this method takes too long, you can use the more efficient methodConfidenceFinder.getBestConfidenceForFmeasure(Alignment, Alignment, GoldStandardCompleteness, int)
and set a decimal precision (e.g.static double
ConfidenceFinder.getBestConfidenceForFmeasure
(Alignment reference, Alignment systemAlignment, GoldStandardCompleteness gsCompleteness, int decimalPrecision) Given two alignments, this method determines the best cutting point (main confidence in correspondences) in order to optimize the F1-score.static double
ConfidenceFinder.getBestConfidenceForFmeasureBeta
(Alignment reference, Alignment systemAlignment, GoldStandardCompleteness gsCompleteness, double beta) Given two alignments, this method determines the best cutting point (main confidence in correspondences) in order to optimize the F_beta-score (beta is given as a parameter).static double
ConfidenceFinder.getBestConfidenceForPrecision
(Alignment reference, Alignment systemAlignment, GoldStandardCompleteness gsCompleteness) Given two alignments, this method determines the best cutting point (main confidence in correspondences) in order to optimize the precision.