eriktks/conll2003
Updated • 38.3k • 166
How to use yashparalkar0/bert-finetuned-pos with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="yashparalkar0/bert-finetuned-pos") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("yashparalkar0/bert-finetuned-pos")
model = AutoModelForTokenClassification.from_pretrained("yashparalkar0/bert-finetuned-pos")Model is a fine-tuned version of bert-base-uncased on the conll2003 dataset. It achieves the following results on the evaluation set:
This model fine-tunes bert-base-uncased on the CoNLL-2003 dataset for part-of-speech (POS) tagging. It is trained to label each token in a sentence with its corresponding POS tag, achieving high precision and recall on the evaluation set. Suitable for NLP tasks that require accurate grammatical structure identification in English text.
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.2395 | 1.0 | 1756 | 0.2447 | 0.9170 | 0.9157 | 0.9164 | 0.9417 |
| 0.1589 | 2.0 | 3512 | 0.2177 | 0.9245 | 0.9209 | 0.9227 | 0.9463 |
| 0.1191 | 3.0 | 5268 | 0.2140 | 0.9258 | 0.9257 | 0.9257 | 0.9483 |
Base model
google-bert/bert-base-uncased