eriktks/conll2003
Updated • 31.7k • 170
How to use VuHuy/bert-finetune-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="VuHuy/bert-finetune-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("VuHuy/bert-finetune-ner")
model = AutoModelForTokenClassification.from_pretrained("VuHuy/bert-finetune-ner")This model is a fine-tuned version of bert-base-cased on the conll2003 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.0501 | 1.0 | 878 | 0.0776 | 0.3631 | 0.3639 | 0.3635 | 0.7850 |
| 0.0292 | 2.0 | 1756 | 0.0760 | 0.3690 | 0.3661 | 0.3675 | 0.7865 |
| 0.0144 | 3.0 | 2634 | 0.0722 | 0.3697 | 0.3705 | 0.3701 | 0.7866 |
Base model
google-bert/bert-base-cased