eriktks/conll2003
Updated • 39.3k • 166
How to use gagan3012/bert-tiny-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="gagan3012/bert-tiny-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("gagan3012/bert-tiny-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("gagan3012/bert-tiny-finetuned-ner")# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("gagan3012/bert-tiny-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("gagan3012/bert-tiny-finetuned-ner")This model is a fine-tuned version of prajjwal1/bert-tiny 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.0355 | 1.0 | 878 | 0.1692 | 0.8072 | 0.8248 | 0.8159 | 0.9594 |
| 0.0411 | 2.0 | 1756 | 0.1678 | 0.8101 | 0.8277 | 0.8188 | 0.9600 |
| 0.0386 | 3.0 | 2634 | 0.1697 | 0.8103 | 0.8269 | 0.8186 | 0.9599 |
| 0.0373 | 4.0 | 3512 | 0.1694 | 0.8106 | 0.8263 | 0.8183 | 0.9600 |
| 0.0383 | 5.0 | 4390 | 0.1689 | 0.8083 | 0.8274 | 0.8177 | 0.9598 |
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="gagan3012/bert-tiny-finetuned-ner")