NAME
Lingua::YaTeA::LinguisticItem - Perl extension for the linguistic item of the forbiddent structures
SYNOPSIS
use Lingua::YaTeA::LinguisticItem;
Lingua::YaTeA::LinguisticItem->new($type, $form);
DESCRIPTION
This module implements the linguistic items. Each linguistic item is composed of a form (a word or a Part-of-Speech tag) and the type of the form (IF
for inflected form, LF
for lemma or POS
for Part-of-Speech tag).
METHODS
new()
new ($type, $form);
The method creates a new linguistic item having the type $type
and the form form
.
getForm()
getForm();
The methods returns the form of the linguistic item.
getType())
getType();
The methods returns the type of the linguistic item.
matchesWord()
matchesWord($word)
The method checks if the word $word
matches the form of the linguistic item. It returns 1 if the word matches, otherwise 0.
SEE ALSO
Sophie Aubin and Thierry Hamon. Improving Term Extraction with Terminological Resources. In Advances in Natural Language Processing (5th International Conference on NLP, FinTAL 2006). pages 380-387. Tapio Salakoski, Filip Ginter, Sampo Pyysalo, Tapio Pahikkala (Eds). August 2006. LNAI 4139.
AUTHOR
Thierry Hamon <thierry.hamon@univ-paris13.fr> and Sophie Aubin <sophie.aubin@lipn.univ-paris13.fr>
COPYRIGHT AND LICENSE
Copyright (C) 2005 by Thierry Hamon and Sophie Aubin
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.