Coder Social home page Coder Social logo

tuongtranngoc / gliner Goto Github PK

View Code? Open in Web Editor NEW

This project forked from urchade/gliner

0.0 0.0 0.0 966 KB

Generalist and Lightweight Model for Named Entity Recognition (Extract any entity types from texts)

Home Page: https://arxiv.org/abs/2311.08526

License: Apache License 2.0

Python 100.00%

gliner's Introduction

๐Ÿš€ GLiNER: Generalist and Lightweight Model for Named Entity Recognition

GLiNER is a Named Entity Recognition (NER) model capable of identifying any entity type using a bidirectional transformer encoder (BERT-like). It provides a practical alternative to traditional NER models, which are limited to predefined entities, and Large Language Models (LLMs) that, despite their flexibility, are costly and large for resource-constrained scenarios.

Models Status

๐Ÿ“ข Updates

  • [08/04] - Some pretrained weights contain a Bug which causes performance degradation. For now, use urchade/gliner_base or urchade/gliner_multi. I am working on fixing the problem.
  • ๐Ÿ†• gliner-spacy is available. Install it with pip install gliner-spacy. See Example of usage below.
  • ๐Ÿงฌ gliner_large_bio-v0.1 is a gliner model specialized for biomedical text. It is available under the Apache 2.0 license.
  • ๐Ÿš€ gliner_mediumv2.1 is available under the Apache 2.0 license. It should have similar performance as gliner_base and gliner_medium.
  • ๐Ÿ“˜ Finetuning notebook is available: examples/finetune.ipynb
  • ๐Ÿ“š Training dataset preprocessing scripts are now available in the data/ directory, covering both Pile-NER and NuNER datasets.

๐ŸŒŸ Available Models on Hugging Face

๐Ÿ‡ฌ๐Ÿ‡ง For English

  • GLiNER Base: urchade/gliner_base (CC BY NC 4.0)
  • GLiNER Small: urchade/gliner_small (CC BY NC 4.0)
  • GLiNER Small v2: urchade/gliner_smallv2 (Apache 2.0)
  • GLiNER Medium: urchade/gliner_medium (CC BY NC 4.0)
  • GLiNER Medium v2: urchade/gliner_mediumv2 (Apache 2.0)
  • GLiNER Medium v2.1: urchade/gliner_mediumv2.1 (Apache 2.0)
  • GLiNER Large: urchade/gliner_large (CC BY NC 4.0)
  • GLiNER Large v2: urchade/gliner_largev2 (Apache 2.0)

๐ŸŒ For Other Languages

  • Korean: ๐Ÿ‡ฐ๐Ÿ‡ท taeminlee/gliner_ko
  • Italian: ๐Ÿ‡ฎ๐Ÿ‡น DeepMount00/universal_ner_ita
  • Multilingual: ๐ŸŒ urchade/gliner_multi (CC BY NC 4.0)

๐Ÿ”ฌ Domain Specific Models

  • Biomedical: ๐Ÿงฌ urchade/gliner_large_bio-v0.1 (Apache 2.0)

๐Ÿ›  Installation & Usage

To begin using the GLiNER model, first install the GLiNER Python library through pip:

!pip install gliner

๐Ÿš€ Basic Use Case

After the installation of the GLiNER library, import the GLiNER class. Following this, you can load your chosen model with GLiNER.from_pretrained and utilize predict_entities to discern entities within your text.

from gliner import GLiNER

# Initialize GLiNER with the base model
model = GLiNER.from_pretrained("urchade/gliner_base")

# Sample text for entity prediction
text = """
Cristiano Ronaldo dos Santos Aveiro (Portuguese pronunciation: [kษพiสƒหˆtjษnu สษ”หˆnaldu]; born 5 February 1985) is a Portuguese professional footballer who plays as a forward for and captains both Saudi Pro League club Al Nassr and the Portugal national team. Widely regarded as one of the greatest players of all time, Ronaldo has won five Ballon d'Or awards,[note 3] a record three UEFA Men's Player of the Year Awards, and four European Golden Shoes, the most by a European player. He has won 33 trophies in his career, including seven league titles, five UEFA Champions Leagues, the UEFA European Championship and the UEFA Nations League. Ronaldo holds the records for most appearances (183), goals (140) and assists (42) in the Champions League, goals in the European Championship (14), international goals (128) and international appearances (205). He is one of the few players to have made over 1,200 professional career appearances, the most by an outfield player, and has scored over 850 official senior career goals for club and country, making him the top goalscorer of all time.
"""

# Labels for entity prediction
labels = ["person", "award", "date", "competitions", "teams"]

# Perform entity prediction
entities = model.predict_entities(text, labels, threshold=0.5)

# Display predicted entities and their labels
for entity in entities:
    print(entity["text"], "=>", entity["label"])

Expected Output

Cristiano Ronaldo dos Santos Aveiro => person
5 February 1985 => date
Al Nassr => teams
Portugal national team => teams
Ballon d'Or => award
UEFA Men's Player of the Year Awards => award
European Golden Shoes => award
UEFA Champions Leagues => competitions
UEFA European Championship => competitions
UEFA Nations League => competitions
Champions League => competitions
European Championship => competitions

๐Ÿ”Œ Usage with spaCy

GLiNER can be seamlessly integrated with spaCy. To begin, install the gliner-spacy library via pip:

pip install gliner-spacy

Following installation, you can add GLiNER to a spaCy NLP pipeline. Here's how to integrate it with a blank English pipeline; however, it's compatible with any spaCy model.

import spacy
from gliner_spacy.pipeline import GlinerSpacy

# Configuration for GLiNER integration
custom_spacy_config = {
    "gliner_model": "urchade/gliner_multi",
    "chunk_size": 250,
    "labels": ["person", "organization", "email"],
    "style": "ent",
    "threshold": 0.3
}

# Initialize a blank English spaCy pipeline and add GLiNER
nlp = spacy.blank("en")
nlp.add_pipe("gliner_spacy", config=custom_spacy_config)

# Example text for entity detection
text = "This is a text about Bill Gates and Microsoft."

# Process the text with the pipeline
doc = nlp(text)

# Output detected entities
for ent in doc.ents:
    print(ent.text, ent.label_)

Expected Output

Bill Gates => person
Microsoft => organization

๐Ÿ“Š NER Benchmark Results

๐Ÿ› ๏ธ Areas of Improvements / research

  • Allow longer context (eg. train with long context transformers such as Longformer, LED, etc.)
  • Use Bi-encoder (entity encoder and span encoder) allowing precompute entity embeddings
  • Filtering mechanism to reduce number of spans before final classification to save memory and computation when the number entity types is large
  • Improve understanding of more detailed prompts/instruction, eg. "Find the first name of the person in the text"
  • Better loss function: for instance use Focal Loss (see this paper) instead of BCE to handle class imbalance, as some entity types are more frequent than others
  • Improve multi-lingual capabilities: train on more languages, and use multi-lingual training data
  • Decoding: allow a span to have multiple labels, eg: "Cristiano Ronaldo" is both a "person" and "football player"
  • Dynamic thresholding (in model.predict_entities(text, labels, threshold=0.5)): allow the model to predict more entities, or less entities, depending on the context. Actually, the model tend to predict less entities where the entity type or the domain are not well represented in the training data.
  • Train with EMAs (Exponential Moving Averages) or merge multiple checkpoints to improve model robustness (see this paper)
  • Extend the model to relation extraction but need dataset with relation annotations. Our preliminary work ATG.

๐Ÿ‘จโ€๐Ÿ’ป Model Authors

The model authors are:

๐Ÿ“š Citation

If you find GLiNER useful in your research, please consider citing our paper:

@misc{zaratiana2023gliner,
      title={GLiNER: Generalist Model for Named Entity Recognition using Bidirectional Transformer}, 
      author={Urchade Zaratiana and Nadi Tomeh and Pierre Holat and Thierry Charnois},
      year={2023},
      eprint={2311.08526},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}

We appreciate your support!

gliner's People

Contributors

urchade avatar tomaarsen avatar wjbmattingly avatar taeminlee avatar sj-ray avatar das-vo avatar eltociear avatar th0rntwig avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.