nyu-mll/glue
Viewer • Updated • 1.49M • 470k • 497
How to use Edrex/my-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Edrex/my-model") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Edrex/my-model")
model = AutoModelForSequenceClassification.from_pretrained("Edrex/my-model")Fine-tuned model based on bert-base-uncased with MRPC dataset, which is capable of indicating if two given sentences are paraphrases or not.
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
Base model
google-bert/bert-base-uncased