Fine-tuned BERT for Named Entity Recognition (NER)
Model Details
Model Description
This model is a fine-tuned version of google-bert/bert-base-uncased for Named Entity Recognition (NER) using the CoNLL-2003 dataset. The model classifies tokens into named entity categories such as persons, locations, organizations, and miscellaneous entities.
Developed by: Gowtham Arulmozhi
Language(s) (NLP): English (en)
License: MIT
Finetuned from model : google-bert/bert-base-uncased
How to Get Started with the Model
Run this snippet to use the model with 🤗 Transformers:
python
1from transformers import pipeline
23ner_pipeline = pipeline("ner", model="Wothmag07/NER-fine-tuned-model")4text ="Barack Obama was born in Hawaii."5results = ner_pipeline(text)6print(results)7
Training Details
Training Data
The model was trained using the CoNLL-2003 dataset, which contains news articles annotated for named entities.