PageRenderTime 38ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/uplug-hu/lib/Uplug/HU.pm

https://bitbucket.org/tiedemann/uplug
Perl | 39 lines | 19 code | 17 blank | 3 comment | 3 complexity | ae5f623ed30ff8557b6360b5f2384bfa MD5 | raw file
Possible License(s): GPL-3.0, LGPL-2.1, BSD-3-Clause
  1. package Uplug::HU;
  2. =head1 NAME
  3. Uplug::HU - Uplug Language pack for Hungarian
  4. =head1 SYNOPSIS
  5. # prepare some data
  6. uplug pre/markup -in input.txt | uplug pre/sent > sentences.xml
  7. uplug pre/basic -in input.txt -out tokenized.xml
  8. # tag tokenized text in XML
  9. uplug pre/hu/tagHunPos -in tokenized.xml -out tagged.xml
  10. # run the entire pipeline
  11. uplug pre/hu-all -in input.txt -out output.xml
  12. =head1 DESCRIPTION
  13. Note that you need to install the main components of L<Uplug> first. Download the latest version of uplug-main from L<https://bitbucket.org/tiedemann/uplug> or from CPAN and install it on your system.
  14. The Uplug::HU package includes configuration files for running annotation tools for Hungarian. To install configuration files and models, simply run:
  15. perl Makefile.PL
  16. make
  17. make install
  18. =head1 SEE ALSO
  19. Project website: L<https://bitbucket.org/tiedemann/uplug>
  20. CPAN: L<http://search.cpan.org/~tiedemann/uplug-main/>
  21. =cut
  22. 1;