eriktks/conll2003
Updated • 31.8k • 170
How to use hemanth11/dummy with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="hemanth11/dummy") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("hemanth11/dummy")
model = AutoModelForTokenClassification.from_pretrained("hemanth11/dummy")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.0208 | 1.0 | 1756 | 0.0893 | 0.9177 | 0.9421 | 0.9297 | 0.9825 |
| 0.0134 | 2.0 | 3512 | 0.0697 | 0.9346 | 0.9504 | 0.9424 | 0.9867 |
| 0.0089 | 3.0 | 5268 | 0.0766 | 0.9308 | 0.9500 | 0.9403 | 0.9864 |
Base model
google-bert/bert-base-cased