eriktks/conll2003
Updated • 31.8k • 170
How to use om-ashish-soni/bert-base-cased with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="om-ashish-soni/bert-base-cased") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("om-ashish-soni/bert-base-cased")
model = AutoModelForTokenClassification.from_pretrained("om-ashish-soni/bert-base-cased")This model was trained from scratch 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.2707 | 1.0 | 1756 | 0.3120 | 0.9171 | 0.9263 | 0.9217 | 0.9267 |
| 0.1829 | 2.0 | 3512 | 0.2928 | 0.9189 | 0.9295 | 0.9242 | 0.9299 |
| 0.1411 | 3.0 | 5268 | 0.3045 | 0.9245 | 0.9319 | 0.9282 | 0.9333 |