surrey-nlp/PLOD-CW-25
Viewer • Updated • 2.4k • 145 • 1
How to use benchaffe/Bert-RAdam-Large with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="benchaffe/Bert-RAdam-Large") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("benchaffe/Bert-RAdam-Large")
model = AutoModelForTokenClassification.from_pretrained("benchaffe/Bert-RAdam-Large")This model is a fine-tuned version of bert-base-cased on a subset of the PLODv2-filtered dataset. It achieves the following results on the evaluation set:
It achieves the following results on the test 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.2244 | 1.0 | 500 | 0.1675 | 0.7653 | 0.8651 | 0.8121 | 0.9355 |
| 0.1231 | 2.0 | 1000 | 0.1673 | 0.7433 | 0.9011 | 0.8146 | 0.9375 |
| 0.0923 | 3.0 | 1500 | 0.1698 | 0.7867 | 0.8539 | 0.8189 | 0.9391 |
| 0.0657 | 4.0 | 2000 | 0.1865 | 0.7857 | 0.8405 | 0.8122 | 0.9394 |
| 0.0431 | 5.0 | 2500 | 0.2110 | 0.7864 | 0.8598 | 0.8215 | 0.9403 |
Base model
google-bert/bert-base-cased