pub trait Chunker {
// Required method
fn chunk_sentence(
&self,
sentence: &[String],
tags: &[Option<UPOS>],
) -> Vec<bool>;
}
Expand description
An implementer of this trait is capable of identifying the noun phrases in a provided sentence.