nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use Cheng98/bert-large-boolq with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Cheng98/bert-large-boolq") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Cheng98/bert-large-boolq")
model = AutoModelForSequenceClassification.from_pretrained("Cheng98/bert-large-boolq")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Cheng98/bert-large-boolq")
model = AutoModelForSequenceClassification.from_pretrained("Cheng98/bert-large-boolq")This model is a fine-tuned version of bert-large-cased on the GLUE BOOLQ 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:
Base model
google-bert/bert-large-cased
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Cheng98/bert-large-boolq")