Skip to content
/ lima Public
forked from aymara/lima

The Libre Multilingual Analyzer, a Natural Language Processing (NLP) C++ toolkit.

License

AGPL-3.0, Unknown licenses found

Licenses found

AGPL-3.0
LICENSE
Unknown
COPYING
Notifications You must be signed in to change notification settings

benlabbe/lima

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c2a5cc9 · Nov 2, 2021
Oct 5, 2018
Apr 19, 2021
Jan 27, 2014
Jan 17, 2019
Nov 2, 2021
Oct 22, 2021
Nov 2, 2021
Sep 1, 2021
Nov 1, 2021
Jun 16, 2021
Oct 21, 2021
Nov 2, 2021
Jun 30, 2021
Mar 4, 2021
Oct 16, 2020
Sep 11, 2021
Sep 26, 2021
Aug 26, 2020
Sep 20, 2021
May 25, 2018
Jan 27, 2014
Dec 19, 2018
Oct 18, 2021
Oct 2, 2013
Aug 31, 2021
Mar 11, 2020
Apr 20, 2017
Jan 21, 2019
Oct 18, 2021
Feb 7, 2019
Jun 25, 2019
Sep 11, 2021
Mar 3, 2020
Jul 23, 2020
Jul 23, 2020

Repository files navigation

LIMA - Libre Multilingual Analyzer

LIMA logo

TL;DR

Under GNU/Linux, with a user having the rights to run docker commands and the possibility to install Python packages using pip:

# check docker access
$ docker ps
# if there is no error here, then proceed with the installation using pip
$ pip install aymara
$ python
>>> import aymara.lima
>>> l = aymara.lima.Client(host='localhost', port='8080')
>>> sentences = l.analyzeText('Hello, World!')
>>> print(sentences[0][0].lemma)
hello
>>> print(sentences.conll())
# sent_id = 1
# text = Hello, World!
1       Hello   hello   INTJ    _       _               0       root      _ Len=5|Pos=1|SpaceAfter=No
2       ,       ,       PUNCT   _       _               1       punct     _ Len=1|Pos=6
3       World   World   PROPN   _       Number=Sing     1       vocative  _ Len=5|Pos=8|SpaceAfter=No
4       !       !       PUNCT   _       _               1       punct     _ Len=1|Pos=13

Introducing LIMA

LIMA is a multilingual linguistic analyzer developed by the CEA LIST, LASTI laboratory (French acronym for Text and Image Semantic Analysis Laboratory). LIMA is available under a dual licensing model, AGPL and commercial.

LIMA has state of the art performance for more than 60 languages thanks to its recent deep learning (neural network) based modules. But it includes also a very powerful rules based mechanism called ModEx allowing to quickly extract information (entities, relations, events…) in new domains where annotated data does not exist.

For more information, installation instructions and documentation, please refer to the LIMA Wiki.

Appveyor Build Status: Build status

About

The Libre Multilingual Analyzer, a Natural Language Processing (NLP) C++ toolkit.

Resources

License

AGPL-3.0, Unknown licenses found

Licenses found

AGPL-3.0
LICENSE
Unknown
COPYING

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 56.5%
  • Roff 31.6%
  • Perl 4.4%
  • CMake 3.2%
  • QML 1.2%
  • Shell 0.9%
  • Other 2.2%