eriktks/conll2002
Updated • 1.65k • 10
How to use raulgdp/NER-finetunining-Bert-Large-cased with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="raulgdp/NER-finetunining-Bert-Large-cased") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("raulgdp/NER-finetunining-Bert-Large-cased")
model = AutoModelForTokenClassification.from_pretrained("raulgdp/NER-finetunining-Bert-Large-cased")This model is a fine-tuned version of google-bert/bert-large-cased on the conll2002 dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.0896 | 1.0 | 1041 | 0.1297 | 0.7488 | 0.7829 | 0.7654 | 0.9667 |
| 0.0525 | 2.0 | 2082 | 0.1303 | 0.7548 | 0.8134 | 0.7830 | 0.9691 |
| 0.0275 | 3.0 | 3123 | 0.1418 | 0.7853 | 0.8235 | 0.8039 | 0.9718 |
Base model
google-bert/bert-large-cased