Uses of Interface
org.lionsoul.jcseg.ISegment
-
Packages that use ISegment Package Description org.lionsoul.jcseg.extractor org.lionsoul.jcseg.extractor.impl org.lionsoul.jcseg.fi org.lionsoul.jcseg.segmenter -
-
Uses of ISegment in org.lionsoul.jcseg.extractor
Fields in org.lionsoul.jcseg.extractor declared as ISegment Modifier and Type Field Description protected ISegmentKeyphraseExtractor. segthe ISegment objectprotected ISegmentKeywordsExtractor. segthe ISegment objectprotected ISegmentSummaryExtractor. wordSegISegment word tokenizer objectMethods in org.lionsoul.jcseg.extractor that return ISegment Modifier and Type Method Description ISegmentKeyphraseExtractor. getSeg()ISegmentKeywordsExtractor. getSeg()ISegmentSummaryExtractor. getWordSeg()Methods in org.lionsoul.jcseg.extractor with parameters of type ISegment Modifier and Type Method Description voidKeyphraseExtractor. setSeg(ISegment seg)voidKeywordsExtractor. setSeg(ISegment seg)voidSummaryExtractor. setWordSeg(ISegment wordSeg)Constructors in org.lionsoul.jcseg.extractor with parameters of type ISegment Constructor Description KeyphraseExtractor(ISegment seg)construct methodKeywordsExtractor(ISegment seg)construct methodSummaryExtractor(ISegment wordSeg, SentenceSeg sentenceSeg)construct method -
Uses of ISegment in org.lionsoul.jcseg.extractor.impl
Constructors in org.lionsoul.jcseg.extractor.impl with parameters of type ISegment Constructor Description TextRankKeyphraseExtractor(ISegment seg)TextRankKeywordsExtractor(ISegment seg)TextRankSummaryExtractor(ISegment wordSeg, SentenceSeg sentenceSeg) -
Uses of ISegment in org.lionsoul.jcseg.fi
Methods in org.lionsoul.jcseg.fi that return ISegment Modifier and Type Method Description ISegmentSegmenterFunction. create(SegmenterConfig config, ADictionary dic) -
Uses of ISegment in org.lionsoul.jcseg.segmenter
Classes in org.lionsoul.jcseg.segmenter that implement ISegment Modifier and Type Class Description classComplexSegJcseg complex segmentation implementation based on the filter works of MMSeg rules:classDelimiterSegdelimiter segment algorithm implementation extended from common segment interface ISegmentclassDetectSegDetect segmentation mode return words only in the loaded dictionary yat, when matched a word and return it or continue to find the next word in the dictionaryclassMostSegMost mode implementation which all the possible combinations will be returned, and build it for information retrieval (better for index) of course.classNGramSegJcseg n-gram tokenizer implementationclassNLPSegNLP segmentation implementation And this extends all the properties of the Complex one the rest of them are build for NLP onlyclassSegmenterabstract segmentation super class: 1.classSimpleSegJcseg simple segmentation implementation
-