eriktks/conll2003
Updated • 41k • 166
How to use joshuaphua/bert-base-uncased-conll2003 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="joshuaphua/bert-base-uncased-conll2003") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("joshuaphua/bert-base-uncased-conll2003")
model = AutoModelForTokenClassification.from_pretrained("joshuaphua/bert-base-uncased-conll2003")This model is a fine-tuned version of bert-base-uncased 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.0651 | 1.0 | 3922 | 0.1483 | 0.8842 | 0.9067 | 0.8953 | 0.9775 |
| 0.0287 | 2.0 | 7844 | 0.1530 | 0.8885 | 0.9046 | 0.8965 | 0.9781 |
Base model
google-bert/bert-base-uncased