fiNERweb
Collection
A multilingual dataset for NER covering 91 langauges and 25 scripts
•
3 items
•
Updated
•
1
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
fiNERweb is a multilingual named entity recognition dataset containing annotated text in multiple languages. Each example contains:
Currently supported languages:
Each example contains:
{
"text": str, # Original text
"tokens": List[str], # Tokenized text
"bio_tags": List[str], # BIO tags for NER
"char_spans": List[Dict], # Character-level entity spans
"token_spans": List[Dict] # Token-level entity spans
}
from datasets import load_dataset
# Load a specific language
dataset = load_dataset("whoisjones/fiNERweb", "am") # For Amharic
# or
dataset = load_dataset("whoisjones/fiNERweb", "en") # For English
# Access the data
print(dataset["train"][0])
If you use this dataset, please cite:
@misc{fiNERweb,
author = {Jonas Golde},
title = {fiNERweb: Multilingual Named Entity Recognition Dataset},
year = {2024},
publisher = {HuggingFace},
journal = {HuggingFace Datasets},
howpublished = {\\url{https://huggingface.co/datasets/whoisjones/fiNERweb}}
}
Key changes:
This should resolve the language code validation errors in the metadata. The ISO 639-1 codes are the standard two-letter codes that Hugging Face expects in the metadata.