Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sentence segmentation tools to use when input sentence has no punctuation (is normalized)

Suppose there is a sentence like "find me some jazz music and play it", where all the text is normalized and there are no punctuation marks (output of a speech recognition library).

What online/offline tools can be used to do "sentence segmentation" other than the naive approach of splitting on conjunctions ?

Input:

find me some jazz music and play it

Output:

find me some jazz music
play it

like image 344
Ravikiran Avatar asked Nov 14 '22 02:11

Ravikiran


1 Answers

A dependence parser should help.

like image 137
Nicolas Avatar answered May 06 '23 23:05

Nicolas