![JAR search and dependency download from the Maven repository](/logo.png)
eu.project.ttc.models.FrequencyUnderThreshholdSelector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of termsuite-core Show documentation
Show all versions of termsuite-core Show documentation
A Java UIMA-based toolbox for multilingual and efficient terminology extraction an multilingual term alignment
package eu.project.ttc.models;
public class FrequencyUnderThreshholdSelector implements TermSelector {
private int threshhold;
public FrequencyUnderThreshholdSelector(int threshhold) {
super();
this.threshhold = threshhold;
}
public int getThreshhold() {
return threshhold;
}
@Override
public boolean select(Term t) {
return t.getFrequency() < this.threshhold;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy