đ RoBERTa for Multilingual Named Entity Recognition
This model is designed for multilingual named entity recognition, offering high - performance entity detection across multiple languages.
đ Quick Start
This model detects entities by classifying every token according to the IOB format:
['O', 'B-PER', 'I-PER', 'B-ORG', 'I-ORG', 'B-LOC', 'I-LOC']
You can find the code in this GitHub repository.
⨠Features
- Supports multiple languages including English, German, French, Chinese, Italian, Spanish, Hindi, Bengali, Arabic, Russian, Ukrainian, Portuguese, Urdu, Indonesian, Japanese, Nepali, Dutch, Turkish, Catalan, Bulgarian, and Cantonese.
- Fine - tuned on a portion of the wikiann dataset for better performance in named entity recognition.
đĻ Installation
No specific installation steps are provided in the original README.
đģ Usage Examples
Basic Usage
You can load this model by using the AutoTokenize and AutoModelForTokenClassification classes:
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("julian-schelb/roberta-ner-multilingual/", add_prefix_space=True)
model = AutoModelForTokenClassification.from_pretrained("julian-schelb/roberta-ner-multilingual/")
text = "In December 1903 in France the Royal Swedish Academy of Sciences awarded Pierre Curie, Marie Curie, and Henri Becquerel the Nobel Prize in Physics."
inputs = tokenizer(
text,
add_special_tokens=False,
return_tensors="pt"
)
with torch.no_grad():
logits = model(**inputs).logits
predicted_token_class_ids = logits.argmax(-1)
predicted_tokens_classes = [model.config.id2label[t.item()] for t in predicted_token_class_ids[0]]
predicted_tokens_classes
đ Documentation
Model Description
This model detects entities by classifying every token according to the IOB format. You can find the code in this GitHub repository.
Training Data
This model was fine - tuned on a portion of the wikiann dataset corresponding to the following languages:
["en","de", "fr",
"zh", "it", "es",
"hi", "bn", "ar",
"ru", "uk", "pt",
"ur", "id", "ja",
"ne", "nl", "tr",
"ca", "bg", "zh-yue"]
The model was fine - tuned on 375,100 sentences in the training set, with a validation set of 173,100 examples. Performance metrics reported are based on an additional 173,100 examples. The complete WikiANN dataset includes training examples for 282 languages and was constructed from Wikipedia. Training examples are extracted in an automated manner, exploiting entities mentioned in Wikipedia articles, often formatted as hyperlinks to the source article. Provided NER tags are in the IOB2 format. Named entities are classified as location (LOC), person (PER), or organization (ORG).
Evaluation Results
This model achieves the following results (measured using the test split of the wikiann dataset):
{'LOC': {'f1': 0.8994491397524903,
'number': 184430,
'precision': 0.8941572985543279,
'recall': 0.9048039906739684},
'ORG': {'f1': 0.829114679375883,
'number': 129760,
'precision': 0.8283525257886599,
'recall': 0.8298782367447596},
'PER': {'f1': 0.9115096398413828,
'number': 130471,
'precision': 0.9043545174723882,
'recall': 0.9187788857293958},
'overall_accuracy': 0.9398182274831388,
'overall_f1': 0.8825581369330908,
'overall_precision': 0.8781215422873389,
'overall_recall': 0.8870397898623895}
About RoBERTa
This model is a fine - tuned version of [XLM - RoBERTa](https://huggingface.co/xlm - roberta - large). The original model was pre - trained on 2.5TB of filtered CommonCrawl data containing 100 languages. It was introduced in the paper Unsupervised Cross - lingual Representation Learning at Scale by Conneau et al. and first released in this repository.
RoBERTa is a transformers model pretrained on a large corpus in a self - supervised fashion. This means it was pretrained on the raw texts only, with no humans labelling them in any way (which is why it can use lots of publicly available data) with an automatic process to generate inputs and labels from those texts.
More precisely, it was pretrained with the Masked language modeling (MLM) objective. Taking a sentence, the model randomly masks 15% of the words in the input then runs the entire masked sentence through the model and has to predict the masked words. This is different from traditional recurrent neural networks (RNNs) that usually see the words one after the other, or from autoregressive models like GPT which internally mask the future tokens. It allows the model to learn a bidirectional representation of the sentence.
This way, the model learns an inner representation of 100 languages that can then be used to extract features useful for downstream tasks: if you have a dataset of labeled sentences for instance, you can train a standard classifier using the features produced by the XLM - RoBERTa model as inputs.
Limitations and Bias
This model is limited by its training dataset of entity - annotated news articles from a specific span of time. This may not generalize well for all use cases in different domains.
Related Papers
- Pan, X., Zhang, B., May, J., Nothman, J., Knight, K., & Ji, H. (2017). Cross - lingual Name Tagging and Linking for 282 Languages. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) (pp. 1946â1958). Association for Computational Linguistics.
- Rahimi, A., Li, Y., & Cohn, T. (2019). Massively Multilingual Transfer for NER. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics (pp. 151â164). Association for Computational Linguistics.
- Liu, Y., Ott, M., Goyal, N., Du, J., Joshi, M., Chen, D., Levy, O., Lewis, M., Zettlemoyer, L., & Stoyanov, V.. (2019). RoBERTa: A Robustly Optimized BERT Pretraining Approach.
Citation
This model has been fine - tuned for the research paper indicated below:
@inproceedings{schelbECCEEntitycentricCorpus2022,
title = {{ECCE}: {Entity}-centric {Corpus} {Exploration} {Using} {Contextual} {Implicit} {Networks}},
url = {https://dl.acm.org/doi/10.1145/3487553.3524237},
booktitle = {Companion {Proceedings} of the {Web} {Conference} 2022},
author = {Schelb, Julian and Ehrmann, Maud and Romanello, Matteo and Spitz, Andreas},
year = {2022},
}
đ§ Technical Details
The model uses the IOB format for entity classification and is fine - tuned on a specific portion of the wikiann dataset. It has been evaluated on multiple performance metrics such as F1, precision, accuracy, and recall.
đ License
This model is released under the MIT license.
Property |
Details |
Model Type |
RoBERTa fine - tuned for multilingual named entity recognition |
Training Data |
A portion of the wikiann dataset for 21 languages |
Tags |
roberta, ner, nlp |
Datasets |
wikiann |
Metrics |
f1, precision, accuracy, recall |
License |
MIT |