public class TextLangDetector extends LanguageDetector
Please run the TextREST.jl server before using this.
mixedLanguages, shortText| Constructor and Description | 
|---|
| TextLangDetector() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | addText(char[] cbuf,
       int off,
       int len)Add statistics about this text for the current document. | 
| protected static boolean | canRun() | 
| List<LanguageResult> | detectAll()Detect languages based on previously submitted text (via addText calls). | 
| boolean | hasModel(String language)Provide information about whether a model exists for a specific
 language. | 
| LanguageDetector | loadModels()Load (or re-load) all available language models. | 
| LanguageDetector | loadModels(Set<String> set)Load (or re-load) the models specified in  | 
| void | reset()Reset statistics about the current document being processed | 
| LanguageDetector | setPriors(Map<String,Float> languageProbabilities)Set the a-priori probabilities for these languages. | 
addText, detect, detect, detectAll, getDefaultLanguageDetector, getLanguageDetectors, getLanguageDetectors, hasEnoughText, isMixedLanguages, isShortText, setMixedLanguages, setShortTextprotected static boolean canRun()
public LanguageDetector loadModels() throws IOException
LanguageDetectorloadModels in class LanguageDetectorIOExceptionpublic LanguageDetector loadModels(Set<String> set) throws IOException
LanguageDetectorloadModels in class LanguageDetectorset - list of target languages.IOExceptionpublic boolean hasModel(String language)
LanguageDetectorhasModel in class LanguageDetectorlanguage - ISO 639-1 name for languagepublic LanguageDetector setPriors(Map<String,Float> languageProbabilities) throws IOException
LanguageDetectorIf hasModel() returns false for any of the languages, an IllegalArgumentException is thrown.
Use of these probabilities is detector-specific, and thus might not impact the results at all. As such, these should be viewed as a hint.
setPriors in class LanguageDetectorlanguageProbabilities - Map from language to probabilityIOExceptionpublic void reset()
LanguageDetectorreset in class LanguageDetectorpublic void addText(char[] cbuf,
                    int off,
                    int len)
LanguageDetectoraddText in class LanguageDetectorcbuf - Character bufferoff - Offset into cbuf to first character in the run of textlen - Number of characters in the run of text.public List<LanguageResult> detectAll()
LanguageDetectordetectAll in class LanguageDetectorCopyright © 2007–2022 The Apache Software Foundation. All rights reserved.