nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 498
How to use Hartunka/bert_base_rand_10_v1_rte with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_10_v1_rte") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v1_rte")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v1_rte")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v1_rte")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v1_rte")This model is a fine-tuned version of Hartunka/bert_base_rand_10_v1 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.7378 | 1.0 | 10 | 0.7153 | 0.4693 |
| 0.6802 | 2.0 | 20 | 0.7187 | 0.5054 |
| 0.6332 | 3.0 | 30 | 0.7667 | 0.5162 |
| 0.5205 | 4.0 | 40 | 1.0243 | 0.4982 |
| 0.3812 | 5.0 | 50 | 1.1773 | 0.4657 |
| 0.2636 | 6.0 | 60 | 1.4377 | 0.5126 |
Base model
Hartunka/bert_base_rand_10_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_10_v1_rte")