google/boolq
Viewer • Updated • 12.7k • 40.7k • 101
How to use pranay-j/bert-base-uncased-google-boolq with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="pranay-j/bert-base-uncased-google-boolq") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("pranay-j/bert-base-uncased-google-boolq")
model = AutoModelForSequenceClassification.from_pretrained("pranay-j/bert-base-uncased-google-boolq")This model is a fine-tuned version of bert-base-uncased on the boolq dataset. It achieves the following results on the evaluation set:
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 0.2317 | 0.9966 | 147 | 0.2198 | 0.6569 |
| 0.2 | 2.0 | 295 | 0.2002 | 0.6960 |
| 0.1741 | 2.9966 | 442 | 0.1968 | 0.7122 |
| 0.1469 | 3.9864 | 588 | 0.1993 | 0.7150 |
Base model
google-bert/bert-base-uncased