Package org.cleartk.classifier.feature.proliferate

Examples of org.cleartk.classifier.feature.proliferate.CharacterNGramProliferator


        new ProliferatingExtractor(
            new SpannedTextExtractor(),
            new LowerCaseProliferator(),   
            new CapitalTypeProliferator(),
            new NumericTypeProliferator(),
            new CharacterNGramProliferator(fromRight, 0, 2),
            new CharacterNGramProliferator(fromRight, 0, 3)));

    // a list of feature extractors that require the token and the sentence
    this.contextFeatureExtractors = new ArrayList<ContextExtractor<IdentifiedAnnotation>>();
    this.contextFeatureExtractors.add(new ContextExtractor<IdentifiedAnnotation>(
        IdentifiedAnnotation.class,
View Full Code Here

TOP

Related Classes of org.cleartk.classifier.feature.proliferate.CharacterNGramProliferator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.