The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lingua::Interset::Tagset::EN::Conll - Driver for the English tagset of the CoNLL 2007 Shared Task.

VERSION

version 2.026

SYNOPSIS

  use Lingua::Interset::Tagset::EN::Conll;
  my $driver = Lingua::Interset::Tagset::EN::Conll->new();
  my $fs = $driver->decode("NN\tNN\t_");

or

  use Lingua::Interset qw(decode);
  my $fs = decode('en::conll', "NN\tNN\t_");

DESCRIPTION

Interset driver for the English tagset of the CoNLL 2007 Shared Task. CoNLL tagsets in Interset are traditionally three values separated by tabs. The values come from the CoNLL columns CPOS, POS and FEAT. For English, these values are trivially derived from the tagset of the Penn Treebank. Thus this driver is only a translation layer above the en::penn driver.

SEE ALSO

Lingua::Interset, Lingua::Interset::Tagset, Lingua::Interset::Tagset::EN::Penn, Lingua::Interset::FeatureStructure

AUTHOR

Dan Zeman <zeman@ufal.mff.cuni.cz>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Univerzita Karlova v Praze (Charles University in Prague).

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.