I'm pretty sure someone has faced this basic issue in the past. You send a wall of text to the MS Cognitive Services Linguistic Analysis engine and it returns you a pile of tokens back with the text you sent in. (A tokenized version of your text). Then, all you want is a Noun and a Verb from each sentence.
Basically,
For Each Paragraph in MyWallOfText
For Each Sentence in Paragraph
MyNoun = ResultOfMagicCode(Sentence, "Noun")
MyVerb = ResultOfMagicCode(Sentence, "Verb")
}
}
But I find examples not.
Has anyone seen such a library, an example, has an example, has a library, has suggestions, has appropriate memes, has clues?
Thanks.