SemEvalWorkshop/sem_eval_2018_task_1
Updated β’ 796 β’ 18
How to use winain7788/bert-finetuned-sem_eval-english with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="winain7788/bert-finetuned-sem_eval-english") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("winain7788/bert-finetuned-sem_eval-english")
model = AutoModelForSequenceClassification.from_pretrained("winain7788/bert-finetuned-sem_eval-english", device_map="auto")This model is a fine-tuned version of bert-base-uncased on the sem_eval_2018_task_1 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 | F1 | Roc Auc | Accuracy |
|---|---|---|---|---|---|---|
| 0.4084 | 1.0 | 855 | 0.3155 | 0.6932 | 0.7890 | 0.2754 |
| 0.2826 | 2.0 | 1710 | 0.3029 | 0.6965 | 0.7877 | 0.2765 |
| 0.2412 | 3.0 | 2565 | 0.3082 | 0.7081 | 0.8021 | 0.2731 |
| 0.213 | 4.0 | 3420 | 0.3125 | 0.6992 | 0.7960 | 0.2619 |
| 0.1924 | 5.0 | 4275 | 0.3129 | 0.7081 | 0.8031 | 0.2675 |
Base model
google-bert/bert-base-uncased