nyu-mll/glue
Viewer • Updated • 1.49M • 462k • 495
How to use Dewa/bert-fined-tunned-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Dewa/bert-fined-tunned-model") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Dewa/bert-fined-tunned-model")
model = AutoModelForSequenceClassification.from_pretrained("Dewa/bert-fined-tunned-model")Model is a fine-tunned version of "bert-fined-tunned-model"