nlp.NLPConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-opennlp-java Show documentation
Show all versions of symphony-opennlp-java Show documentation
Symphony OpenNLP Client provided by Symphony Platform Solutions team
package nlp;
public class NLPConfig {
private String POSModelPath;
private String SentenceSplitterModelPath;
private String patternsFile;
public String getPOSModelPath() {
return POSModelPath;
}
public void setPOSModelPath(String POSModelPath) {
this.POSModelPath = POSModelPath;
}
public String getSentenceSplitterModelPath() {
return SentenceSplitterModelPath;
}
public void setSentenceSplitterModelPath(String sentenceSplitterModelPath) {
SentenceSplitterModelPath = sentenceSplitterModelPath;
}
public String getPatternsFile() {
return patternsFile;
}
public void setPatternsFile(String patternsFile) {
this.patternsFile = patternsFile;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy