Skip to main content

A comprehensive multilingual Named Entity Recognition (NER) library leveraging BERT. Supports key information extraction tasks across various domains such as biomedical, environmental, and technological.

Project description

Named_Entity_Recognition_BERT_Multilingual_Library_LUX

Downloads

Overview

Named_Entity_Recognition_BERT_Multilingual_Library_LUX is a powerful and flexible library for Named Entity Recognition (NER) tasks using BERT models. This library supports multilingual NER and is suitable for key information extraction tasks across various domains such as biomedical, environmental, and technological.

The library simplifies NER tasks by providing an easy-to-use pipeline for loading data, training models, and making predictions. It is designed for developers, researchers, and data scientists looking for a robust NER solution. You can find an example of employing the library at this Kaggle notebook.

Features

  • Multilingual Support: Leverage the power of BERT for NER tasks in multiple languages.
  • Flexible Input Format: Works with CoNLL format data.
  • Easy Integration: Provides a simple NERPipeline class for seamless integration into your projects.
  • Comprehensive Metrics: Evaluate your models with precision, recall, F1-score, and accuracy.
  • Pretrained Models: Supports any BERT-based pretrained models.

Installation

Install the library using pip:

pip install named-entity-recognition-bert-multilingual-library-lux

Usage

Example Usage

Here is a complete example of how to use the library for training and predicting:

# Clone the dataset
!git clone https://github.com/spyysalo/bc2gm-corpus.git
from Named_Entity_Recognition_BERT_Multilingual_Library_LUX import NERPipeline

# Initialize pipeline
pipeline = NERPipeline(pretrained_model="bert-base-multilingual-cased")

# Prepare data
train_dataset, val_dataset, test_dataset = pipeline.prepare_data(
    "./bc2gm-corpus/conll/train.tsv", 
    "./bc2gm-corpus/conll/devel.tsv", 
    "./bc2gm-corpus/conll/test.tsv"
)


# Initialize model
pipeline.initialize_model(num_labels=len(pipeline.label_list))

# Train the model
pipeline.train(train_dataset, val_dataset,output_dir="/kaggle/temp/bio_ner_results/")

# Load the model after training
pipeline.load_model(model_dir="/kaggle/temp/bio_ner_results/best_model/")

# Test the model
test_metrics = pipeline.test(test_dataset)
print(test_metrics)

# Predict on a new sentence
predictions = pipeline.predict("BRCA1 is a gene associated with breast cancer.")
print("\nPredictions on New Sentence:")
for token, label in predictions:
    print(f"{token} | {label}")

CoNLL Data Format

The input data should be in CoNLL format:

Token1    Label1
Token2    Label2
Token3    Label3
Token4    Label4

Example:

BRCA1       B-GENE
is          O
a           O
gene        O
associated  O
with        O
breast      B-DISEASE
cancer      I-DISEASE
.           O

Key Components

1. NERPipeline

The main class providing methods for:

  • Data Preparation: Converts CoNLL format to a dataset suitable for BERT.
  • Model Initialization: Loads a pretrained BERT model for NER.
  • Training: Fine-tunes the model on your data.
  • Prediction: Predicts labels for new sentences.
  • Evaluation: Computes evaluation metrics (precision, recall, F1, etc.).

2. Helper Functions

The library also includes utility functions for advanced users:

  • load_data: Load and parse CoNLL format data.
  • convert_to_hf_format: Convert data to Hugging Face dataset format.
  • compute_metrics: Evaluate predictions using seqeval.

Evaluation Metrics

The library uses the seqeval library to compute the following metrics:

  • Precision
  • Recall
  • F1-Score
  • Accuracy

Dependencies

  • torch
  • transformers
  • datasets
  • evaluate
  • numpy
  • seqeval

Contributing

We welcome contributions! Please feel free to open issues or submit pull requests.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file named_entity_recognition_bert_multilingual_library_lux-0.1.14.tar.gz.

File metadata

File hashes

Hashes for named_entity_recognition_bert_multilingual_library_lux-0.1.14.tar.gz
Algorithm Hash digest
SHA256 8544d97f0d9f0395deb5fb4afddd0c815afa842da9cdbe6ac4b1fb8588adbf09
MD5 c735c3ef85452acdd6207bb619394ae7
BLAKE2b-256 cf2f2fd621490950ef8814f42ace6b553ec0097b9ea06699907c3a92b1434fb9

See more details on using hashes here.

File details

Details for the file Named_Entity_Recognition_BERT_Multilingual_Library_LUX-0.1.14-py3-none-any.whl.

File metadata

File hashes

Hashes for Named_Entity_Recognition_BERT_Multilingual_Library_LUX-0.1.14-py3-none-any.whl
Algorithm Hash digest
SHA256 18fadb4744bfce74925764eebe923987b82a4e514f85213fc3b32fd6b0f59616
MD5 1756d7841ed0f5eeab8802d507190f8c
BLAKE2b-256 83aece207955b12adc919237516bbb9ca616ed4ad9138cbc2112cb9fa171d73b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page