eriktks/conll2003
Updated • 38.3k • 166
How to use GustawB/albert-finetuned-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="GustawB/albert-finetuned-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("GustawB/albert-finetuned-ner")
model = AutoModelForTokenClassification.from_pretrained("GustawB/albert-finetuned-ner")This model is a fine-tuned version of albert-base-v2 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.5379 | 1.0 | 1756 | 0.4843 | 0.4079 | 0.2740 | 0.3278 | 0.8502 |
| 0.3491 | 2.0 | 3512 | 0.3726 | 0.4903 | 0.3837 | 0.4305 | 0.8778 |
| 0.26 | 3.0 | 5268 | 0.3371 | 0.5032 | 0.4610 | 0.4812 | 0.8898 |
Base model
albert/albert-base-v2