nlpGuy
nlpGuy

Reputation:

How to analyze simple English sentences

Is there any library that can be used for analyzing (nlp) simple english text. For example it would be perfect if it can do that; Input: "I am going" Output: I, go, present continuous tense

Upvotes: 11

Views: 1959

Answers (4)

ojblass
ojblass

Reputation: 21620

Part of speech is often useful in Text-to-Speech engines. Part of the process of determining the pronunciation requires knowing the part of speech:

The lead pipe led the detective to the lead in the play.

I know there are several parsers available as part of the Festival Project. This article may provide some insight into the techniques used. English is very mild in comparison to some of the other languages so be prepared to struggle.

Upvotes: 2

dirkgently
dirkgently

Reputation: 111120

I find the Link Grammar very interesting. Check it out!

Upvotes: 1

Dan Lew
Dan Lew

Reputation: 87420

How about the Natural Language Toolkit?

Upvotes: 3

Brian
Brian

Reputation: 25824

Try StanFord's NLP stuff here.

Upvotes: 2

Related Questions