nyu-mll/glue
Viewer • Updated • 1.49M • 463k • 495
How to use Hartunka/tiny_bert_km_5_v1_rte with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_5_v1_rte") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_5_v1_rte")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_5_v1_rte")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_5_v1_rte")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_5_v1_rte")This model is a fine-tuned version of Hartunka/tiny_bert_km_5_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.6988 | 1.0 | 10 | 0.7008 | 0.4874 |
| 0.6769 | 2.0 | 20 | 0.6973 | 0.4549 |
| 0.6577 | 3.0 | 30 | 0.7095 | 0.4910 |
| 0.6243 | 4.0 | 40 | 0.7322 | 0.4838 |
| 0.5811 | 5.0 | 50 | 0.7697 | 0.4801 |
| 0.5124 | 6.0 | 60 | 0.8589 | 0.4657 |
| 0.4223 | 7.0 | 70 | 0.9745 | 0.4982 |
Base model
Hartunka/tiny_bert_km_5_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_5_v1_rte")