ekinhbayar/brill-tagger

PHP implementation of a Brill Tagger, an inductive part-of-speech tagging method.


Keywords
nlp, tagger, pos, brill, part of speech
License
MIT

Documentation

Brill Tagger

Build Status Code Coverage Scrutinizer Code Quality

PHP implementation of a Brill Tagger, an inductive part-of-speech tagging method. Uses a lexicon generated from Brown Corpus.

Installation

$ composer require ekinhbayar/brill-tagger

or just clone/download this repository.

Usage

$input = "The quick brown fox jumps over the lazy dog.";
$tagger = new BrillTagger();
$tagger->tag($input);