PHP implementation of a Brill Tagger, an inductive part-of-speech tagging method. Uses a lexicon generated from Brown Corpus.
- PHP 7.3+
$ composer require ekinhbayar/brill-tagger
then run $ composer install
. The latter will define the lexicon.
or just clone/download this repository.
$input = "The quick brown fox jumps over the lazy dog.";
$tagger = new BrillTagger();
$tagger->tag($input);