com.aliasi.tokenizer.PorterStemmerTokenizerFactory 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.tokenizer;
import com.aliasi.util.AbstractExternalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.io.Serializable;
/**
* A {@code PorterStemmerTokenizerFactory} applies Porter's stemmer
* to the tokenizers produced by a base tokenizer factory.
*
* Porter's stemmer computes an approximation of converting words
* to their morphological base form. This class provides a single
* top-level static method, {@link #stem(String)}, which returns a
* stemmed form of an input string.
*
*
Serialization
*
* A Porter stemming tokenizer factory is serializable if its
* base tokenizer factory is serializable.
*
* Thread Safety
*
* A Porter stemming tokenizer factory is thread safe if its
* base tokenizer factory is thread safe.
*
* Implementation
*
* The underlying
* stemming code is Martin Porter's own public domain Java port of his
* original C implementation of stemming. More information can be found at:
*
*
*
* Porter
* Stemmer Home Page
*
*
*
* References
*
*
* The original paper describing Porter's stemmer is:
*
*
* Porter, Martin. 1980. An algorithm for suffix stripping. Program.
* 14:3. 130--137.
*
*
*
* @author Bob Carpenter
* @version 4.0.1
* @since Lingpipe3.8
*/
public class PorterStemmerTokenizerFactory
extends ModifyTokenTokenizerFactory
implements Serializable {
static final long serialVersionUID = 1257970981781551262L;
/**
* Construct a tokenizer factory that applies Porter stemming
* to the tokenizers produced by the specified base factory.
*
* @param factory Base tokenizer factory.
*/
public PorterStemmerTokenizerFactory(TokenizerFactory factory) {
super(factory);
}
/**
* Returns the Porter stemmed version of the specified
* token.
*
* @param token Token to stem.
* @return Stemmed version of token.
*/
public String modifyToken(String token) {
return stem(token);
}
/**
* Return the stem of the specified input string using the Porter
* stemmer.
*
* @param in String to stem.
* @return Stem of the specified string.
*/
static public String stem(String in) {
String result = PorterStemmer.stem(in);
return result;
}
Object writeReplace() {
return new Serializer(this);
}
public String toString() {
return getClass().toString()
+ "\n base factory=\n "
+ baseTokenizerFactory().toString().replace("\n","\n ");
}
static class Serializer
extends AbstractSerializer {
static final long serialVersionUID = -4758505014396491716L;
public Serializer() {
this(null);
}
public Serializer(PorterStemmerTokenizerFactory factory) {
super(factory);
}
public Object read(ObjectInput in,
TokenizerFactory baseFactory) {
return new PorterStemmerTokenizerFactory(baseFactory);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy