All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cleartk.token.pos.impl.DefaultFeatureExtractor Maven / Gradle / Ivy

The newest version!
/** 
 * Copyright (c) 2009, Regents of the University of Colorado 
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 
 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 
 * Neither the name of the University of Colorado at Boulder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE. 
 */
package org.cleartk.token.pos.impl;

import java.util.ArrayList;
import java.util.List;

import org.apache.uima.UimaContext;
import org.apache.uima.jcas.JCas;
import org.apache.uima.resource.ResourceInitializationException;
import org.cleartk.ml.Feature;
import org.cleartk.ml.feature.extractor.CleartkExtractor;
import org.cleartk.ml.feature.extractor.CleartkExtractorException;
import org.cleartk.ml.feature.extractor.CoveredTextExtractor;
import org.cleartk.ml.feature.extractor.FeatureExtractor1;
import org.cleartk.ml.feature.extractor.CleartkExtractor.Following;
import org.cleartk.ml.feature.extractor.CleartkExtractor.Ngram;
import org.cleartk.ml.feature.extractor.CleartkExtractor.Preceding;
import org.cleartk.ml.feature.function.CapitalTypeFeatureFunction;
import org.cleartk.ml.feature.function.CharacterNgramFeatureFunction;
import org.cleartk.ml.feature.function.FeatureFunctionExtractor;
import org.cleartk.ml.feature.function.LowerCaseFeatureFunction;
import org.cleartk.ml.feature.function.NumericTypeFeatureFunction;
import org.cleartk.token.pos.PosFeatureExtractor;
import org.cleartk.token.type.Sentence;
import org.cleartk.token.type.Token;
import org.apache.uima.fit.factory.initializable.Initializable;

import com.google.common.collect.Lists;

/**
 * 
* Copyright (c) 2009, Regents of the University of Colorado
* All rights reserved. * * @author Philip Ogren * */ public class DefaultFeatureExtractor implements PosFeatureExtractor, Initializable { private List> simpleExtractors; private List> windowExtractors; private List> windowNGramExtractors; public void initialize(UimaContext context) throws ResourceInitializationException { simpleExtractors = Lists.newArrayList(); FeatureExtractor1 wordExtractor = new CoveredTextExtractor(); CharacterNgramFeatureFunction.Orientation fromLeft = CharacterNgramFeatureFunction.Orientation.LEFT_TO_RIGHT; CharacterNgramFeatureFunction.Orientation fromRight = CharacterNgramFeatureFunction.Orientation.RIGHT_TO_LEFT; simpleExtractors.add(new FeatureFunctionExtractor( wordExtractor, new LowerCaseFeatureFunction(), new CapitalTypeFeatureFunction(), new NumericTypeFeatureFunction(), new CharacterNgramFeatureFunction(fromLeft, 0, 1), new CharacterNgramFeatureFunction(fromLeft, 0, 2), new CharacterNgramFeatureFunction(fromLeft, 0, 3), new CharacterNgramFeatureFunction(fromRight, 0, 1), new CharacterNgramFeatureFunction(fromRight, 0, 2), new CharacterNgramFeatureFunction(fromRight, 0, 3), new CharacterNgramFeatureFunction(fromRight, 0, 4), new CharacterNgramFeatureFunction(fromRight, 0, 5), new CharacterNgramFeatureFunction(fromRight, 0, 6))); windowExtractors = Lists.newArrayList(); windowExtractors.add(new CleartkExtractor( Token.class, wordExtractor, new Preceding(2), new Following(2))); windowNGramExtractors = Lists.newArrayList(); windowNGramExtractors.add(new CleartkExtractor(Token.class, wordExtractor, new Ngram( new Preceding(2)), new Ngram(new Following(2)))); } public List extractFeatures(JCas jCas, Token token, Sentence sentence) throws CleartkExtractorException { List features = new ArrayList(); for (FeatureExtractor1 extractor : simpleExtractors) { features.addAll(extractor.extract(jCas, token)); } for (CleartkExtractor extractor : windowExtractors) { features.addAll(extractor.extractWithin(jCas, token, sentence)); } for (CleartkExtractor extractor : windowNGramExtractors) { features.addAll(extractor.extractWithin(jCas, token, sentence)); } return features; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy