Re: text analysis in python

2005-04-04 Thread Steve Holden
Maurice LING wrote: Terry Reedy wrote: "Maurice LING" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Say I code my stuffs in Jython (importing java libraries) in a file "text.py" Just to be clear, Jython is not a separate langague that you code *in*, but a separate implementation

Re: text analysis in python

2005-04-03 Thread Maurice LING
Terry Reedy wrote: "Maurice LING" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Say I code my stuffs in Jython (importing java libraries) in a file "text.py" Just to be clear, Jython is not a separate langague that you code *in*, but a separate implementation that you may slight

Re: text analysis in python

2005-04-03 Thread Steven Bethard
Maurice Ling wrote: In the Java world, there is GATE (general architecture for text engineering) and it seems very impressive. Are there something like that for Python? I worked with GATE this last summer and really hated it. Can't decide whether that was just my growing distaste for Java or ac

Re: text analysis in python

2005-04-03 Thread Terry Reedy
"Maurice LING" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >Say I code my stuffs in Jython (importing java libraries) in a file >"text.py" Just to be clear, Jython is not a separate langague that you code *in*, but a separate implementation that you may slightly differently co

Re: text analysis in python

2005-04-03 Thread Maurice LING
Mark Winrock wrote: You might try http://web.media.mit.edu/~hugo/montylingua/ "Liu, Hugo (2004). MontyLingua: An end-to-end natural language processor with common sense. Available at: web.media.mit.edu/~hugo/montylingua." Thanks Mark. I've downloaded MontyLingua and it looks pretty cool. To me,

Re: text analysis in python

2005-04-03 Thread Mark Winrock
Maurice Ling wrote: Hi, I'm a postgraduate and my project deals with a fair bit of text analysis. I'm looking for some libraries and tools that is geared towards text analysis (and text engineering). So far, the most comprehensive toolkit in python for my purpose is NLTK (natural language tool

Re: text analysis in python

2005-04-03 Thread Maurice LING
. I don't know if you're aware that, in a fairly strong sense, anything "[i]n the Java world" *is* "for Python". If you program with Jython (for example--there are other ways to achieve much the same end), your source code can be in Python, but you have full access to any library coded in Java.

Re: text analysis in python

2005-04-03 Thread beliavsky
The book "Text Processing in Python" by David Mertz, available online at http://gnosis.cx/TPiP/ , may be helpful. -- http://mail.python.org/mailman/listinfo/python-list

Re: text analysis in python

2005-04-03 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, Maurice Ling <[EMAIL PROTECTED]> wrote: . . . >In the Java world, there is GATE (general architecture for text >engineering) and it seems very impressive. Are there something like that >for Py

text analysis in python

2005-04-03 Thread Maurice Ling
Hi, I'm a postgraduate and my project deals with a fair bit of text analysis. I'm looking for some libraries and tools that is geared towards text analysis (and text engineering). So far, the most comprehensive toolkit in python for my purpose is NLTK (natural language tool kit) by Edward Loper