Open Source English Language Parser

L

Luc The Perverse

I was wondering if there existed

A quality english language parser, which would be capible, with simple to
moderate modification, of converting all words to their base form (plurals
become singular - verbs are unconjugated, adjective endings drop off etc.)

A simple reverse dictionary will not work, because before a verb can be
unconjugated it needs to be identified as a verb. Otherwise the noun
"being" could become be!
 
R

Roedy Green

A quality english language parser, which would be capible, with simple to
moderate modification, of converting all words to their base form (plurals
become singular - verbs are unconjugated, adjective endings drop off etc.)

There was one featured on Star Trek NG episode 47.
 
R

Ralf Callenberg

Luc said:
A quality english language parser, which would be capible, with simple to
moderate modification, of converting all words to their base form (plurals
become singular - verbs are unconjugated, adjective endings drop off etc.)

You ask for a language parser (going for the syntax of sentences), but
what you describe is aiming at the moprhology of words. Now it depends
on what you want. Do you really want the linguistic base form, as you
find it in human readable dictionaries? Then a lemmatizer can give you
the base form of a word, as well as telling you which form of the word
you have at hand. There should definetly be something in Java, as it is
a very common problem, implementations in different programming
languages are available for decades. Of course the lemmatizer might not
give you a unique information about a word, as for instance "run" could
be a verb as well as noun. A so called tagger could help you then,
reducing this ambiguity, based on the context of the word. It is also a
standard problem and a lot of implementations are around. A tagger might
still not give you a unique answer, but for most practical applications,
this might not be a problem.

If you just want to do some search, dictionary lookup etc., a stemmer
might be, what you are looking for. It reduces words not to the
linguistic base form, but to a stem, which is not necessarly actually an
english word. This would be the simplest solution, used for instance in
search engines. This has also been implemented by genererations of
computer linguists, so you might search for "stemmer Java" in Google and
find something you could use.

Greetings,
Ralf
 
L

Luc The Perverse

Roedy Green said:
There was one featured on Star Trek NG episode 47.


Next time the crew of the Enterprise is forced back to our time period, I
will see if I can go back with them to procure it. Until then I am forced
to use this inferior technology :(
 
Joined
Jun 28, 2011
Messages
1
Reaction score
0
"Roedy Green" <[email protected]> wrote in
message news:[email protected]...
> On Sat, 29 Oct 2005 15:09:53 -0600, "Luc The Perverse"
> <[email protected]> wrote, quoted or indirectly
> quoted someone who said :
>
>>A quality english language parser, which would be capible, with simple to
>>moderate modification, of converting all words to their base form (plurals
>>become singular - verbs are unconjugated, adjective endings drop off etc.)

>
> There was one featured on Star Trek NG episode 47.



Next time the crew of the Enterprise is forced back to our time period, I
will see if I can go back with them to procure it. Until then I am forced
to use this inferior technology :(

--
LTP

"Just like humans, a Java thread cannot paint in its sleep." - Roedy Green

Don't listen to Luc. He's just being an ass :yell:. However, this is a very academic issue. I haven't heard of any open source code to do language parsing but my best guess for writing one would be using a lexical analyzer in combination with a dictionary of word roots, endings and prefixes to accomplish your task.
You'd need a very solid understanding of your target language, pretty good programming/engineering skills, and some experience with Latin wouldn't hurt.

It's really not as sci-fi as most people think it is.

...you could just go to grad school though...
 
Last edited:

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,776
Messages
2,569,603
Members
45,189
Latest member
CryptoTaxSoftware

Latest Threads

Top