nlpaueb/finer-139
Viewer • Updated • 1.12M • 562 • 28
How to use muhtasham/bert-tiny-finetuned-finer with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="muhtasham/bert-tiny-finetuned-finer") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("muhtasham/bert-tiny-finetuned-finer")
model = AutoModelForTokenClassification.from_pretrained("muhtasham/bert-tiny-finetuned-finer")This model is a fine-tuned version of google/bert_uncased_L-2_H-128_A-2 on the finer-139 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.0871 | 1.0 | 11255 | 0.0952 | 0.0 | 0.0 | 0.0 | 0.9843 |
| 0.0864 | 2.0 | 22510 | 0.0895 | 0.7640 | 0.0082 | 0.0162 | 0.9844 |
| 0.0929 | 3.0 | 33765 | 0.0882 | 0.5339 | 0.0360 | 0.0675 | 0.9847 |
Base model
google/bert_uncased_L-2_H-128_A-2