nyu-mll/glue
Viewer • Updated • 1.49M • 460k • 504
How to use gokulsrinivasagan/bert_uncased_L-4_H-128_A-2_rte with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokulsrinivasagan/bert_uncased_L-4_H-128_A-2_rte") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokulsrinivasagan/bert_uncased_L-4_H-128_A-2_rte")
model = AutoModelForSequenceClassification.from_pretrained("gokulsrinivasagan/bert_uncased_L-4_H-128_A-2_rte")This model is a fine-tuned version of google/bert_uncased_L-4_H-128_A-2 on the GLUE RTE 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 | Accuracy |
|---|---|---|---|---|
| 0.6967 | 1.0 | 10 | 0.6907 | 0.5523 |
| 0.689 | 2.0 | 20 | 0.6875 | 0.5740 |
| 0.6832 | 3.0 | 30 | 0.6854 | 0.5379 |
| 0.6776 | 4.0 | 40 | 0.6809 | 0.5632 |
| 0.6694 | 5.0 | 50 | 0.6780 | 0.5812 |
| 0.6599 | 6.0 | 60 | 0.6749 | 0.5740 |
| 0.6469 | 7.0 | 70 | 0.6726 | 0.5993 |
| 0.6392 | 8.0 | 80 | 0.6712 | 0.5776 |
| 0.6221 | 9.0 | 90 | 0.6682 | 0.5884 |
| 0.6034 | 10.0 | 100 | 0.6684 | 0.5957 |
| 0.5867 | 11.0 | 110 | 0.6717 | 0.5993 |
| 0.5686 | 12.0 | 120 | 0.6690 | 0.6065 |
| 0.5596 | 13.0 | 130 | 0.6659 | 0.6173 |
| 0.5377 | 14.0 | 140 | 0.6720 | 0.6101 |
| 0.5249 | 15.0 | 150 | 0.6820 | 0.6029 |
| 0.5019 | 16.0 | 160 | 0.6896 | 0.6065 |
| 0.492 | 17.0 | 170 | 0.6977 | 0.6029 |
| 0.4786 | 18.0 | 180 | 0.7027 | 0.6173 |
Base model
google/bert_uncased_L-4_H-128_A-2