nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_rand_100_v1_wnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_100_v1_wnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_100_v1_wnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_100_v1_wnli")This model is a fine-tuned version of Hartunka/bert_base_rand_100_v1 on the GLUE WNLI 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.6987 | 1.0 | 3 | 0.7065 | 0.2958 |
| 0.6957 | 2.0 | 6 | 0.7060 | 0.5070 |
| 0.694 | 3.0 | 9 | 0.7249 | 0.3099 |
| 0.6932 | 4.0 | 12 | 0.7266 | 0.4085 |
| 0.693 | 5.0 | 15 | 0.7479 | 0.2254 |
| 0.6904 | 6.0 | 18 | 0.7845 | 0.2535 |
| 0.6908 | 7.0 | 21 | 0.8210 | 0.1972 |
Base model
Hartunka/bert_base_rand_100_v1