hari
hari

Reputation: 2759

Pos Tagger in PHP

I am looking for a pos-tagger which can be used in php.Or i need to know if there is any way to use results of Qtag java app with php.

Upvotes: 1

Views: 2428

Answers (2)

dors
dors

Reputation: 1152

Take a look at PHP wrapper of Standford NLP processor. This is a more complete implementation of the functionality then the PHP/IR.

https://github.com/agentile/PHP-Stanford-NLP

The git hub page has examples to get you started fast.

Upvotes: 2

Mark Baker
Mark Baker

Reputation: 212412

PHP/IR has an article on "Part Of Speech Tagging" with an implementation of a Brill Tagger

Upvotes: 2

Related Questions