nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use Hartunka/bert_base_rand_100_v2_mnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_100_v2_mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_100_v2_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_100_v2_mnli")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_100_v2_mnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_100_v2_mnli")This model is a fine-tuned version of Hartunka/bert_base_rand_100_v2 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.9712 | 1.0 | 1534 | 0.8988 | 0.5824 |
| 0.861 | 2.0 | 3068 | 0.8350 | 0.6276 |
| 0.769 | 3.0 | 4602 | 0.7970 | 0.6504 |
| 0.6896 | 4.0 | 6136 | 0.7633 | 0.6661 |
| 0.6191 | 5.0 | 7670 | 0.7852 | 0.6735 |
| 0.5467 | 6.0 | 9204 | 0.8340 | 0.6729 |
| 0.4721 | 7.0 | 10738 | 0.8675 | 0.6770 |
| 0.4013 | 8.0 | 12272 | 0.9629 | 0.6663 |
| 0.3355 | 9.0 | 13806 | 1.0930 | 0.6595 |
Base model
Hartunka/bert_base_rand_100_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_100_v2_mnli")