vote up 5 vote down star
1

I'm looking for something that may or may not exist. Is there such a thing as an 'English grammar rules engine' available on the Windows platform (specifically for something like .NET or C#)?

Specifically, I'm looking for something that would be able to take a sentence in the 'future tense' and change it to the 'past tense' (based on English grammar rules) ... like:

Work on widget software and then meet with Ricardo

to this:

Worked on widget software and then met with Ricardo

Is there a rules engine that does that already?

flag

Great question +1 for you. – James Mar 5 at 0:44

6 Answers

vote up 3 vote down check

Talk to this guy, he might have some ideas for you. In general, English is too ambiguous for this type of thing. For example:

Cut paper in half.

Is this an imperative command, or a past-tense sentence fragment?

That being said, there are some things that might be worth looking into, like SharpNLP

link|flag
vote up 2 vote down

Check this out, it's called Grammatica. It may not be precisley what you're after but it's definitley a good start to parsing English grammar rules in C#.

link|flag
vote up 3 vote down

As others have stated, this is a very hard problem and has not been solved in the general case. However, there are some systems that do pretty well. Princeton's WordNet is one of them. It can identify parts of speech, synonyms, etc (perhaps including tense) with some degree of accuracy. I think you may be interested in these functions, which appear to find the root of a word given a particular conjugation and may also be able to find a particular conjugation given the root (but that page doesn't provide examples, so I can't be sure I'm interpreting the docs correctly).

link|flag
vote up 1 vote down

No, there isn't one per se (and if you created one that works, you would be famous and put all computational linguists out of their jobs). If it is only a few phrases, you can look into building a Finite State Machine, or if you're up to it, a Context Free Grammar and then populate them with your rules. You can find Python algorithms for all this in NLTK. FSMs are what speech recognition grammars use to push speaker independence in Automatic Speech Recognition. CFGs are used to build the grammars for the most complex programming languages out there. They can, with some patience, be used to your purpose. However, unless you use paid built grammars like Xerox's XLE or OpenCCG or, possibly some statistical package CCG Parser (where you don't have to train or add your rules, but performance is somewhat degraded). These tools, as well, are mostly in Java.

link|flag
vote up 1 vote down

The short answer is no, general NLP parsing engines don't exist.

The long answer is "kinda", but there's 50 years of research showing that it's a Very Hard Problem, in the general case. There might be one doing specific tense transformations. Regardless, C# probably won't have one.

link|flag
vote up 6 vote down

If you build one that is reliable you would be famous.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.