File: control

package info (click to toggle)
liblingua-en-tagger-perl 0.31-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,184 kB
  • sloc: perl: 450; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,578 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Source: liblingua-en-tagger-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 12)
Build-Depends-Indep: libhtml-parser-perl <!nocheck>,
                     liblingua-stem-perl <!nocheck>,
                     libmemoize-expirelru-perl <!nocheck>,
                     perl
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/liblingua-en-tagger-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/liblingua-en-tagger-perl.git
Homepage: https://metacpan.org/release/Lingua-EN-Tagger

Package: liblingua-en-tagger-perl
Architecture: all
Depends: libhtml-parser-perl,
         liblingua-stem-perl,
         libmemoize-expirelru-perl,
         ${misc:Depends},
         ${perl:Depends}
Description: part-of-speech tagger for English natural language processing
 Lingua::EN::Tagger is a perl module which implements a probability based,
 corpus-trained tagger that assigns POS tags to English text based on a lookup
 dictionary and a set of probability values. The tagger assigns appropriate
 tags based on conditional probabilities - it examines the preceding tag to
 determine the appropriate tag for the current word. Unknown words are
 classified according to word morphology or can be set to be treated as nouns
 or other parts of speech.
 .
 The tagger also extracts as many nouns and noun phrases as it can, using a
 set of regular expressions.