Package opennlp.tools.chunker
Class ChunkSample
- java.lang.Object
-
- opennlp.tools.chunker.ChunkSample
-
- All Implemented Interfaces:
Serializable
,Sample
public class ChunkSample extends Object implements Sample
Class for holding chunks for a single unit of text.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ChunkSample(String[] sentence, String[] tags, String[] preds)
Initializes aChunkSample
instance.ChunkSample(List<String> sentence, List<String> tags, List<String> preds)
Initializes aChunkSample
instance.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Span[]
getPhrasesAsSpanList()
String[]
getPreds()
String[]
getSentence()
String[]
getTags()
int
hashCode()
String
nicePrint()
Creates a nice to read string for the phrases formatted as following:
[NP Rockwell_NNP ] [VP said_VBD ] [NP the_DT agreement_NN ] [VP calls_VBZ ] [SBAR for_IN ] [NP it_PRP ] [VP to_TO supply_VB ] [NP 200_CD additional_JJ so-called_JJ shipsets_NNS ] [PP for_IN ] [NP the_DT planes_NNS ] ._.
static Span[]
phrasesAsSpanList(String[] aSentence, String[] aTags, String[] aPreds)
Create arrays ofspans
of phrases.String
toString()
-
-
-
Constructor Detail
-
ChunkSample
public ChunkSample(String[] sentence, String[] tags, String[] preds)
Initializes aChunkSample
instance.- Parameters:
sentence
- The training sentence.tags
- The POS tags for thesentence
.preds
- The chunk tags in B-* I-* notation.
-
-
Method Detail
-
getSentence
public String[] getSentence()
- Returns:
- Retrieves the training sentence.
-
getTags
public String[] getTags()
- Returns:
- Retrieves the POS Tags for the sentence.
-
getPreds
public String[] getPreds()
- Returns:
- Retrieves the chunk tags in B-* I-* notation.
-
getPhrasesAsSpanList
public Span[] getPhrasesAsSpanList()
- Returns:
- the phrases as an array of spans.
-
phrasesAsSpanList
public static Span[] phrasesAsSpanList(String[] aSentence, String[] aTags, String[] aPreds)
Create arrays ofspans
of phrases.- Parameters:
aSentence
- The training sentence.aTags
- The POS tags for thesentence
.aPreds
- The chunk tags in B-* I-* notation.- Returns:
- the phrases as an array of spans
-
nicePrint
public String nicePrint()
Creates a nice to read string for the phrases formatted as following:
[NP Rockwell_NNP ] [VP said_VBD ] [NP the_DT agreement_NN ] [VP calls_VBZ ] [SBAR for_IN ] [NP it_PRP ] [VP to_TO supply_VB ] [NP 200_CD additional_JJ so-called_JJ shipsets_NNS ] [PP for_IN ] [NP the_DT planes_NNS ] ._.
- Returns:
- A nice to read string representation of the chunk phases
-
-