Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to impliment a Part-of-Speech (POS) tagger

I'm looking for the best PHP-based way to scan a lot of text entries (classifieds) and pull out keywords - anyone know about Part-of-Speech tagging? Is there a PHP-ish way to do this?

I scan a lot of online classifieds - but none with categories! To speed up the categorization process, I'm looking to install a Part-of-Speech tagger (http://en.wikipedia.org/wiki/Part-of-speech_tagging). Basically, these are cool text-parsing algorithmic software bundles that can tell me what words are nouns (like "Apartment", "Car", "Dog", etc) and what words are junk like at,if,and,but,etc. BUT...

There are online tagging services - one by Yahoo, which seems to be getting less love these days - another by XEROX. However, I'm really interested in installing my own library/software and plugging it into my web app.

DOES ANYONE know of a good way to install POS tagging that works with a PHP web application? I'm dying to figure this out, so any info, advice, or other wisdom you have is really appreciated!

Here's a list of a LOT of different POS software: http://www-nlp.stanford.edu/links/statnlp.html#Taggers (Look under "POS Taggers")

Thanks for reading this!

like image 477
Jamison Avatar asked Jan 20 '11 18:01

Jamison


1 Answers

Ian Barber has implemented a Brill Tagger in PHP, which he presents on his PHP/ir site where he describes using it to analyse tweets.

like image 81
Mark Baker Avatar answered Sep 21 '22 02:09

Mark Baker