Do we have maximum-entropy-based chunker? #12061
Answered
by
thomashacker
wildfluss
asked this question in
Help: Coding & Implementations
-
Do we have maximum-entropy-based sentence chunker? Eg, for
it should output
OpenNLP has that here https://opennlp.apache.org/docs/1.7.1/apidocs/opennlp-tools/opennlp/tools/chunker/ChunkerME.html I wonder how hard would it be to have the same thing in spaCy. |
Beta Was this translation helpful? Give feedback.
Answered by
thomashacker
Jan 6, 2023
Replies: 1 comment
-
Hello, Currently, spaCy does not have this specific functionality. But it's possible to wrap the OpenNLP chunker to a custom spaCy component and use it in a pipeline. You can find more information about creating custom components in our docs. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
thomashacker
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
Currently, spaCy does not have this specific functionality. But it's possible to wrap the OpenNLP chunker to a custom spaCy component and use it in a pipeline. You can find more information about creating custom components in our docs.