Package opennlp.tools.namefind
Class NameSample
- java.lang.Object
-
- opennlp.tools.namefind.NameSample
-
- All Implemented Interfaces:
Serializable
public class NameSample extends Object implements Serializable
Class for holding names for a single unit of text.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_TYPE
The a default type value when there is no type in training data.
-
Constructor Summary
Constructors Constructor Description NameSample(String[] sentence, Span[] names, boolean clearAdaptiveData)
NameSample(String[] sentence, Span[] names, String[][] additionalContext, boolean clearAdaptiveData)
Initializes the current instance.NameSample(String id, String[] sentence, Span[] names, String[][] additionalContext, boolean clearAdaptiveData)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String[][]
getAdditionalContext()
String
getId()
Span[]
getNames()
String[]
getSentence()
int
hashCode()
boolean
isClearAdaptiveDataSet()
static NameSample
parse(String taggedTokens, boolean isClearAdaptiveData)
static NameSample
parse(String taggedTokens, String defaultType, boolean isClearAdaptiveData)
String
toString()
-
-
-
Field Detail
-
DEFAULT_TYPE
public static final String DEFAULT_TYPE
The a default type value when there is no type in training data.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NameSample
public NameSample(String id, String[] sentence, Span[] names, String[][] additionalContext, boolean clearAdaptiveData)
-
NameSample
public NameSample(String[] sentence, Span[] names, String[][] additionalContext, boolean clearAdaptiveData)
Initializes the current instance.- Parameters:
sentence
- training sentencenames
-additionalContext
-clearAdaptiveData
- if true the adaptive data of the feature generators is cleared
-
-
Method Detail
-
getId
public String getId()
-
getSentence
public String[] getSentence()
-
getNames
public Span[] getNames()
-
getAdditionalContext
public String[][] getAdditionalContext()
-
isClearAdaptiveDataSet
public boolean isClearAdaptiveDataSet()
-
parse
public static NameSample parse(String taggedTokens, boolean isClearAdaptiveData) throws IOException
- Throws:
IOException
-
parse
public static NameSample parse(String taggedTokens, String defaultType, boolean isClearAdaptiveData) throws IOException
- Throws:
IOException
-
-