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

This package is auto-updated.

Last update: 2024-03-14 22:59:20 UTC


README

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.

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);