edu.washington.cs.knowitall.nlp.SentenceChunker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reverb-core Show documentation
Show all versions of reverb-core Show documentation
A regular-expression based Open IE relation extractor.
package edu.washington.cs.knowitall.nlp;
public interface SentenceChunker {
public ChunkedSentence chunkSentence(String sent) throws ChunkerException;
}