nyu-mll/glue
Viewer • Updated • 1.49M • 470k • 497
How to use Hartunka/tiny_bert_km_5_v1_mnli 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_mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_5_v1_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_5_v1_mnli")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_5_v1_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_5_v1_mnli")This model is a fine-tuned version of Hartunka/tiny_bert_km_5_v1 on the GLUE MNLI 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.9825 | 1.0 | 1534 | 0.8824 | 0.5957 |
| 0.8526 | 2.0 | 3068 | 0.8075 | 0.6437 |
| 0.775 | 3.0 | 4602 | 0.7722 | 0.6682 |
| 0.7197 | 4.0 | 6136 | 0.7565 | 0.6725 |
| 0.6704 | 5.0 | 7670 | 0.7602 | 0.6800 |
| 0.6234 | 6.0 | 9204 | 0.7737 | 0.6843 |
| 0.5804 | 7.0 | 10738 | 0.7831 | 0.6853 |
| 0.538 | 8.0 | 12272 | 0.8112 | 0.6862 |
| 0.4956 | 9.0 | 13806 | 0.9173 | 0.6777 |
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_mnli")