com.aliasi.features.PrefixedFeatureExtractor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliasi-lingpipe Show documentation
Show all versions of aliasi-lingpipe Show documentation
This is the original Lingpipe:
http://alias-i.com/lingpipe/web/download.html
There were not made any changes to the source code.
/*
* 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.Map;
/**
* A {@code PrefixedFeatureExtractor} applies a specified prefix to all
* of the feature names from a base feature extractor. This class is
* convenient when combining feature extractors in situations where
* there might be name-space conflicts.
*
* Thread Safety
*
* A prefixed feature extractor is thread safe if its underlying
* feature extractor is thread safe.
*
* Serialization
*
* A prefixed feature extractor may be serialized if its underlying
* feature extractor is serializable. Deserialization produces an
* instance of this class.
*
* @author Bob Carpenter
* @version 3.9.2
* @since Lingpipe3.9.2
* @param Type of objects whose features are extracted
*/
public class PrefixedFeatureExtractor
implements FeatureExtractor,
Serializable {
static final long serialVersionUID = -4693775065158617229L;
private final FeatureExtractor mBaseExtractor;
private final String mPrefix;
/**
* Construct a feature extractor that adds the specified prefix
* to feature names extracted by the specified extractor.
*
* @param prefix Prefix for feature names.
* @param extractor Base feature extractor.
*/
public PrefixedFeatureExtractor(String prefix,
FeatureExtractor extractor) {
mPrefix = prefix;
mBaseExtractor = extractor;
}
/**
* Return the feature map derived by prefixing the specified prefix
* to the feature names extracted by the base feature extractor.
*
* @param in Object whose features are extracted.
* @return Mapping from prefixed features to values.
*/
public Map features(E in) {
ObjectToDoubleMap prefixedFeatureMap
= new ObjectToDoubleMap();
Map featureMap = mBaseExtractor.features(in);
for (Map.Entry entry : featureMap.entrySet())
prefixedFeatureMap.set(mPrefix + entry.getKey(),
entry.getValue().doubleValue());
return prefixedFeatureMap;
}
Object writeReplace() {
return new Serializer(this);
}
static class Serializer extends AbstractExternalizable {
static final long serialVersionUID = 6332957246411784407L;
final PrefixedFeatureExtractor mPrefixedFeatureExtractor;
public Serializer(PrefixedFeatureExtractor prefixedFeatureExtractor) {
mPrefixedFeatureExtractor = prefixedFeatureExtractor;
}
public Serializer() {
this(null);
}
@Override
public void writeExternal(ObjectOutput out) throws IOException {
out.writeUTF(mPrefixedFeatureExtractor.mPrefix);
out.writeObject(mPrefixedFeatureExtractor.mBaseExtractor);
}
@Override
public Object read(ObjectInput in)
throws ClassNotFoundException, IOException {
String prefix = in.readUTF();
@SuppressWarnings("unchecked")
FeatureExtractor extractor
= (FeatureExtractor) in.readObject();
return new PrefixedFeatureExtractor(prefix,extractor);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy