Babelscape/multinerd
Viewer • Updated • 3.35M • 1.41k • 26
How to use Rishabh157/multinerd-multilingual-ner-mdeberta with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Rishabh157/multinerd-multilingual-ner-mdeberta") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Rishabh157/multinerd-multilingual-ner-mdeberta")
model = AutoModelForTokenClassification.from_pretrained("Rishabh157/multinerd-multilingual-ner-mdeberta", device_map="auto")This model is a high-accuracy, multi-domain Multilingual Named Entity Recognition (NER) model fine-tuned on the MultiNERD dataset across 10 languages.
Built on top of microsoft/mdeberta-v3-base, it achieves exceptional entity extraction performance across 15 diverse multi-domain categories (31 BIO output logits).
Developed by Rishabh Kumar.
microsoft/mdeberta-v3-base (278M parameters, 12 layers, 768 hidden size, 250k multilingual vocabulary)query_proj, key_proj, value_proj, intermediate.dense, output.dense) merged into standalone base weights.torch.float16, ~530 MB footprint)en), German (de), Spanish (es), French (fr), Italian (it), Dutch (nl), Polish (pl), Portuguese (pt), Russian (ru), Chinese (zh).Babelscape/multinerd).token tag) with blank lines preserving sentence boundaries.mDeBERTa-v3-base SentencePiece tokenizer with add_prefix_space=True. The first subword token receives the entity BIO label, while sub-tokens receive -100 label masking.id_to_label.json).MultiNERD covers standard NER entities plus 11 specialized domain categories:
| Domain Group | Entity Classes | Description |
|---|---|---|
| Standard Entities | PER, LOC, ORG, TIME |
People, Locations, Organizations, Time/Date expressions |
| Natural Sciences | ANIM, PLANT, CEL |
Animals/Species, Plants/Flora, Celestial bodies/Planets |
| Health & Biology | DIS, BIO |
Diseases/Conditions, Biological compounds & genes |
| Culture & Society | EVE, FOOD, MYTH |
Events, Food & Culinary items, Mythological deities |
| Public & Infra | INST, MEDIA, VEHI |
Institutions, Media & Press outlets, Vehicles & Aircraft |
The model was fine-tuned for 5 epochs (~418.5k steps) using AdamW (lr=2e-5, linear scheduler, effective batch size 16).
| Metric | Score |
|---|---|
| Validation Entity F1 | 0.8306 (83.06%) |
| Validation Precision | 0.8981 (89.81%) |
| Validation Recall | 0.7725 (77.25%) |
| Validation Accuracy | 0.9708 (97.08%) |
| Validation Loss | 0.0243 |
| Epoch | Step | Precision | Recall | Entity F1 | Accuracy | Loss |
|---|---|---|---|---|---|---|
| 1 | 83,700 | 85.43% | 71.59% | 77.90% | 96.05% | 0.0315 |
| 2 | 167,400 | 88.50% | 75.52% | 81.49% | 96.73% | 0.0279 |
| 3 | 251,100 | 88.07% | 75.98% | 81.58% | 96.86% | 0.0258 |
| 4 | 334,800 | 89.49% | 76.58% | 82.53% | 96.99% | 0.0245 |
| 5 | 418,500 | 89.81% | 77.25% | 83.06% | 97.08% | 0.0243 |
from transformers import pipeline
ner = pipeline(
"token-classification",
model="Rishabh157/multinerd-multilingual-ner-mdeberta",
aggregation_strategy="simple"
)
text = "The Hubble Space Telescope observed the Andromeda Galaxy."
entities = ner(text)
for entity in entities:
print(f"{entity['word']:<25} | {entity['entity_group']:<15} | Score: {entity['score']:.4f}")
import torch
from transformers import AutoTokenizer, AutoModelForTokenClassification
model_name = "Rishabh157/multinerd-multilingual-ner-mdeberta"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForTokenClassification.from_pretrained(model_name)
text = "Marie Curie descubrió el polonio y el radio en París."
inputs = tokenizer(text, return_tensors="pt")
with torch.no_grad():
outputs = model(**inputs)
predictions = torch.argmax(outputs.logits, dim=2)
tokens = tokenizer.convert_ids_to_tokens(inputs["input_ids"][0])
labels = [model.config.id2label[p.item()] for p in predictions[0]]
for token, label in zip(tokens, labels):
if label != "O":
print(f"{token:<20} -> {label}")
@misc{kumar2026multinerd,
author = {Rishabh Kumar},
title = {MultiNERD 15-Domain Multilingual NER with mDeBERTa-v3},
year = {2026},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/Rishabh157/multinerd-multilingual-ner-mdeberta}}
}
Base model
microsoft/mdeberta-v3-base