ekinhbayar / brill-tagger
PHP implementation of a Brill Tagger, an inductive part-of-speech tagging method.
0.3.1
2016-12-03 14:27 UTC
Requires
- php: >5
Requires (Dev)
- phpunit/phpunit: 5.5.*
This package is auto-updated.
Last update: 2025-02-15 00:59:11 UTC
README
PHP implementation of a Brill Tagger, an inductive part-of-speech tagging method. Uses a lexicon generated from Brown Corpus.
Requirements
- PHP 7.3+
Installation
$ composer require ekinhbayar/brill-tagger
then run $ composer install
. The latter will define the lexicon.
or just clone/download this repository.
Usage
$input = "The quick brown fox jumps over the lazy dog."; $tagger = new BrillTagger(); $tagger->tag($input);