All Projects → aymara → lima

aymara / lima

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

Programming Languages

C++
36643 projects - #6 most used programming language
Roff
2310 projects
perl
6916 projects
CMake
9771 projects
QML
638 projects
shell
77523 projects

Projects that are alternatives of or similar to lima

InformationExtractionSystem
Information Extraction System can perform NLP tasks like Named Entity Recognition, Sentence Simplification, Relation Extraction etc.
Stars: ✭ 27 (-64%)
Mutual labels:  information-extraction, named-entity-recognition, relation-extraction, entity-extraction
Spacy
💫 Industrial-strength Natural Language Processing (NLP) in Python
Stars: ✭ 21,978 (+29204%)
Mutual labels:  named-entity-recognition, nlp-library, tokenization
Ner Bert Pytorch
PyTorch solution of named entity recognition task Using Google AI's pre-trained BERT model.
Stars: ✭ 249 (+232%)
Mutual labels:  information-extraction, named-entity-recognition, entity-extraction
CogIE
CogIE: An Information Extraction Toolkit for Bridging Text and CogNet. ACL 2021
Stars: ✭ 47 (-37.33%)
Mutual labels:  information-extraction, named-entity-recognition, relation-extraction
simple NER
simple rule based named entity recognition
Stars: ✭ 29 (-61.33%)
Mutual labels:  information-extraction, named-entity-recognition, nlp-library
IE Paper Notes
Paper notes for Information Extraction, including Relation Extraction (RE), Named Entity Recognition (NER), Entity Linking (EL), Event Extraction (EE), Named Entity Disambiguation (NED).
Stars: ✭ 14 (-81.33%)
Mutual labels:  information-extraction, named-entity-recognition, relation-extraction
Information Extraction Chinese
Chinese Named Entity Recognition with IDCNN/biLSTM+CRF, and Relation Extraction with biGRU+2ATT 中文实体识别与关系提取
Stars: ✭ 1,888 (+2417.33%)
Mutual labels:  information-extraction, named-entity-recognition, relation-extraction
knowledge-graph-nlp-in-action
从模型训练到部署,实战知识图谱(Knowledge Graph)&自然语言处理(NLP)。涉及 Tensorflow, Bert+Bi-LSTM+CRF,Neo4j等 涵盖 Named Entity Recognition,Text Classify,Information Extraction,Relation Extraction 等任务。
Stars: ✭ 58 (-22.67%)
Mutual labels:  information-extraction, named-entity-recognition, relation-extraction
Multiple Relations Extraction Only Look Once
Multiple-Relations-Extraction-Only-Look-Once. Just look at the sentence once and extract the multiple pairs of entities and their corresponding relations. 端到端联合多关系抽取模型,可用于 http://lic2019.ccf.org.cn/kg 信息抽取。
Stars: ✭ 269 (+258.67%)
Mutual labels:  information-extraction, relation-extraction, entity-extraction
Usc Ds Relationextraction
Distantly Supervised Relation Extraction
Stars: ✭ 378 (+404%)
Mutual labels:  information-extraction, relation-extraction
Understanding Financial Reports Using Natural Language Processing
Investigate how mutual funds leverage credit derivatives by studying their routine filings to the SEC using NLP techniques 📈🤑
Stars: ✭ 36 (-52%)
Mutual labels:  information-extraction, named-entity-recognition
Distre
[ACL 19] Fine-tuning Pre-Trained Transformer Language Models to Distantly Supervised Relation Extraction
Stars: ✭ 75 (+0%)
Mutual labels:  information-extraction, relation-extraction
Open Entity Relation Extraction
Knowledge triples extraction and knowledge base construction based on dependency syntax for open domain text.
Stars: ✭ 350 (+366.67%)
Mutual labels:  information-extraction, relation-extraction
Snips Nlu
Snips Python library to extract meaning from text
Stars: ✭ 3,583 (+4677.33%)
Mutual labels:  information-extraction, named-entity-recognition
Nested Ner Tacl2020 Transformers
Implementation of Nested Named Entity Recognition using BERT
Stars: ✭ 76 (+1.33%)
Mutual labels:  information-extraction, named-entity-recognition
Casrel
A Novel Cascade Binary Tagging Framework for Relational Triple Extraction. Accepted by ACL 2020.
Stars: ✭ 329 (+338.67%)
Mutual labels:  information-extraction, relation-extraction
Clustype
Automatic Entity Recognition and Typing for Domain-Specific Corpora (KDD'15)
Stars: ✭ 99 (+32%)
Mutual labels:  information-extraction, entity-extraction
Pytorch multi head selection re
BERT + reproduce "Joint entity recognition and relation extraction as a multi-head selection problem" for Chinese and English IE
Stars: ✭ 105 (+40%)
Mutual labels:  information-extraction, relation-extraction
Aggcn
Attention Guided Graph Convolutional Networks for Relation Extraction (authors' PyTorch implementation for the ACL19 paper)
Stars: ✭ 318 (+324%)
Mutual labels:  information-extraction, relation-extraction
Tre
[AKBC 19] Improving Relation Extraction by Pre-trained Language Representations
Stars: ✭ 95 (+26.67%)
Mutual labels:  information-extraction, relation-extraction

LIMA - Libre Multilingual Analyzer

LIMA logo

TL;DR

LIMA python bindings are currently available under Linux only (x86_64).

Under Linux with python >= 3.7 and < 4, and upgraded pip:

# Upgrading pip is fundamental in order to obtain the correct LIMA version
$ pip install --upgrade pip
$ pip install aymara==0.4.1
$ lima_models.py -l eng
$ python
>>> import aymara.lima
>>> nlp = aymara.lima.Lima("ud-eng")
>>> sentences = nlp('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 Free Software, available under the MIT license.

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.

Build status GitHub Action Workflow status

LIMA Python Downloads

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].