Interface ITrieFilterableStringMeasure
-
- All Superinterfaces:
IMeasure,IStringMeasure
- All Known Implementing Classes:
JaroWinklerMeasure,RatcliffObershelpMeasure
public interface ITrieFilterableStringMeasure extends IStringMeasure
Created by kvn on 28/09/15.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublecharacterFrequencyUpperBound(int l1, int l2, int m)intcharacterMatchLowerBound(int l1, int l2, double threshold)LinkedList<org.apache.commons.lang3.tuple.ImmutableTriple<Integer,Integer,Integer>>getPartitionBounds(int maxSize, double threshold)intlengthLowerBound(int l1, double threshold)intlengthUpperBound(int l1, double threshold)doubleproximity(String a, String b)-
Methods inherited from interface org.aksw.limes.core.measures.measure.IMeasure
getName, getRuntimeApproximation, getSimilarity, getSimilarity, getType
-
Methods inherited from interface org.aksw.limes.core.measures.measure.string.IStringMeasure
computableViaOverlap, getAlpha, getMidLength, getPrefixLength, getSimilarity, getSizeFilteringThreshold
-
-
-
-
Method Detail
-
characterFrequencyUpperBound
double characterFrequencyUpperBound(int l1, int l2, int m)
-
characterMatchLowerBound
int characterMatchLowerBound(int l1, int l2, double threshold)
-
lengthUpperBound
int lengthUpperBound(int l1, double threshold)
-
lengthLowerBound
int lengthLowerBound(int l1, double threshold)
-
getPartitionBounds
LinkedList<org.apache.commons.lang3.tuple.ImmutableTriple<Integer,Integer,Integer>> getPartitionBounds(int maxSize, double threshold)
-
-