--- language: - brx - lus - mni license: mit size_categories: - 10M Language Train set Development set Test set SentencesEntitiesTokens SentencesEntitiesTokens SentencesEntitiesTokensIAA (κ) Bodo (brx) 212,835302,7132,958,455 23,64933,808329,145 1,0001,42314,0820.875 Mizo (lus) 177,224252,7672,515,386 19,69228,143279,681 1,0001,38414,3300.811 Manipuri (mni) 239,813302,7134,422,373 26,64638,330484,212 1,0001,42618,7650.821 *Note: IAA (Inter-Annotator Agreement) scores are represented using Cohen's κ.* ## Contributors [Prachuryya Kaushik](https://www.linkedin.com/in/pkabundant/)
[Prof. Ashish Anand](https://www.linkedin.com/in/anandashish/) FiNERVINER is a part of the [AWED-FiNER](https://github.com/PrachuryyaKaushik/AWED-FiNER) ecosystem: [**Paper**](https://huggingface.co/papers/2601.10161) | [**GitHub**](https://github.com/PrachuryyaKaushik/AWED-FiNER) | [**Interactive Demo**](https://huggingface.co/spaces/prachuryyaIITG/AWED-FiNER) ## Sample Usage You can use the AWED-FiNER agentic tool to interact with expert models trained using this framework. Below is an example using the `smolagents` library: ```python from smolagents import CodeAgent, HfApiModel from tool import AWEDFiNERTool # Initialize the expert tool ner_tool = AWEDFiNERTool() # Initialize the agent (using a model of your choice) agent = CodeAgent(tools=[ner_tool], model=HfApiModel()) # The agent will automatically use AWED-FiNER for specialized NER # Case: Processing a vulnerable language (Bodo) agent.run("Recognize the named entities in this Bodo sentence: 'बिथाङा दिल्लियाव थाङो।'") ``` ## Citation If you use this dataset, please cite the following papers: ```bibtex @inproceedings{kaushik2026finerviner, title={FiNERVINER: Fine-grained Named Entity Recognition for Vulnerable languages of India's North Eastern Region}, author={Kaushik, Prachuryya and Anand, Ashish}, booktitle={Proceedings of the Fifteenth Language Resources and Evaluation Conference}, volume={15}, year={2026} } @inproceedings{kaushik2026sampurner, title={SampurNER: Fine-grained Named Entity Recognition dataset for 22 Indian Languages}, author={Kaushik, Prachuryya and Anand, Ashish}, booktitle={Proceedings of the AAAI Conference on Artificial Intelligence}, volume={40}, year={2026} } @misc{kaushik2026awedfineragentswebapplications, title={AWED-FiNER: Agents, Web applications, and Expert Detectors for Fine-grained Named Entity Recognition across 36 Languages for 6.6 Billion Speakers}, author={Prachuryya Kaushik and Ashish Anand}, year={2026}, eprint={2601.10161}, archivePrefix={arXiv}, primaryClass={cs.CL}, url={https://arxiv.org/abs/2601.10161}, } ```