From jeremygwa at hotmail.com Mon Oct 25 15:57:37 2010 From: jeremygwa at hotmail.com (Jer A) Date: Mon, 25 Oct 2010 15:57:37 -0700 Subject: [VPM] detect adjectives in a sentence Message-ID: is there any module out there that can do this, that is fairly intuitive? thanks in advance for your help. Regards, Jeremy -------------- next part -------------- An HTML attachment was scrubbed... URL: From abez at abez.ca Mon Oct 25 16:06:10 2010 From: abez at abez.ca (Abram Hindle) Date: Mon, 25 Oct 2010 19:06:10 -0400 Subject: [VPM] detect adjectives in a sentence In-Reply-To: (sfid-20101025_190004_839631_241A4DBA) References: (sfid-20101025_190004_839631_241A4DBA) Message-ID: <4CC60D62.5040205@abez.ca> If you're very lucky this will work (I have never used it) http://search.cpan.org/~acoburn/Lingua-EN-Tagger-0.16/Tagger.pm What you want is a parts of speech tagger. Let me warn you right now, accuracy with this kind of thing can be low especially due to multiple possible parses of just about any sentence. But parts of speech taggers will often work. Otherwise go find explicit NLP Toolkits like NLPTK for python and get them to tag words by parts of speech. So things to google for: * parts of speech * tagger * natural language processing (NLP) abram Jer A wrote: > is there any module out there that can do this, that is fairly intuitive? > > > thanks in advance for your help. > > Regards, > Jeremy > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Victoria-pm mailing list > Victoria-pm at pm.org > http://mail.pm.org/mailman/listinfo/victoria-pm -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 260 bytes Desc: OpenPGP digital signature URL: From peter at psdt.com Mon Oct 25 20:56:02 2010 From: peter at psdt.com (Peter Scott) Date: Mon, 25 Oct 2010 20:56:02 -0700 Subject: [VPM] detect adjectives in a sentence In-Reply-To: References: Message-ID: At 3:57 PM -0700 10/25/10, Jer A wrote: >is there any module out there that can do this, that is fairly intuitive? I haven't used Lingua::LinkParser either, but here's a neat article about it: http://www.foo.be/docs/tpj/issues/vol5_3/tpj0503-0010.html