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

com.aliasi.features.AddFeatureExtractor Maven / Gradle / Ivy

Go to download

This is the original Lingpipe: http://alias-i.com/lingpipe/web/download.html There were not made any changes to the source code.

There is a newer version: 4.1.2-JL1.0
Show newest version
/*
 * LingPipe v. 4.1.0
 * Copyright (C) 2003-2011 Alias-i
 *
 * This program is licensed under the Alias-i Royalty Free License
 * Version 1 WITHOUT ANY WARRANTY, without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the Alias-i
 * Royalty Free License Version 1 for more details.
 *
 * You should have received a copy of the Alias-i Royalty Free License
 * Version 1 along with this program; if not, visit
 * http://alias-i.com/lingpipe/licenses/lingpipe-license-1.txt or contact
 * Alias-i, Inc. at 181 North 11th Street, Suite 401, Brooklyn, NY 11211,
 * +1 (718) 290-9170.
 */

package com.aliasi.features;

import com.aliasi.util.AbstractExternalizable;
import com.aliasi.util.FeatureExtractor;
import com.aliasi.util.ObjectToDoubleMap;

import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.io.Serializable;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;

/**
 * An {@code AddFeatureExtractor} returns feature vectors that result
 * from summing the feature vectors returned by a collection of
 * contained feature extractors.
 *
 * @author Bob Carpenter
 * @version 3.9.2
 * @since Lingpipe3.8
 * @param  Type of objects whose features are extracted
 */
public class AddFeatureExtractor 
    implements FeatureExtractor, Serializable {

    static final long serialVersionUID = -79320527848334652L;

    private final List> mExtractors;

    /**
     * Construct an additive feature extractor from the specified
     * collection of extractors.  Each extractor in the collection must be
     * capable of parsing objects of type {@code E}.
     * 
     * 

The collection will be copied locally, so that subsequent * changes to the extractor collection supplied to the constructor * will not affect the returned feature extractor. * * @param extractors Collection of feature extractors. */ public AddFeatureExtractor(Collection> extractors) { mExtractors = new ArrayList>(extractors); } /** * Construct an additive feature extractor from the specified pair * of extractors. * * @param extractor1 First feature extractor. * @param extractor2 Second feature extractor. */ public AddFeatureExtractor(FeatureExtractor extractor1, FeatureExtractor extractor2) { mExtractors = new ArrayList>(2); mExtractors.add(extractor1); mExtractors.add(extractor2); } /** * Construct an additive feature extractor from the specified * extractors. * * @param extractors Variable length list (or a single array) of extractors. */ public AddFeatureExtractor(FeatureExtractor... extractors) { this(Arrays.asList(extractors)); } public Map features(E in) { ObjectToDoubleMap result = new ObjectToDoubleMap(); for (FeatureExtractor extractor : mExtractors) for (Map.Entry featMap : extractor.features(in).entrySet()) result.increment(featMap.getKey(),featMap.getValue().doubleValue()); return result; } /** * Returns an unmodifiable view of the list of base feature * extractors for this additive feature extractor. * * @return The base feature extractors. */ public List> baseFeatureExtractors() { return Collections.unmodifiableList(mExtractors); } Object writeReplace() { return new Externalizer(this); } static class Externalizer extends AbstractExternalizable { static final long serialVersionUID = -3717190107802122376L; final AddFeatureExtractor mAddFeatureExtractor; public Externalizer(AddFeatureExtractor addFeatureExtractor) { mAddFeatureExtractor = addFeatureExtractor; } public Externalizer() { this(null); } @Override public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(mAddFeatureExtractor.mExtractors.size()); for (FeatureExtractor extractor : mAddFeatureExtractor.mExtractors) out.writeObject(extractor); } @Override public Object read(ObjectInput in) throws ClassNotFoundException, IOException { int size = in.readInt(); List> extractors = new ArrayList>(); for (int i = 0; i < size; ++i) { @SuppressWarnings("unchecked") // know this is right type if written FeatureExtractor extractor = (FeatureExtractor) in .readObject(); extractors.add(extractor); } return new AddFeatureExtractor(extractors); // copies again } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy