How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-classification", model="williamC21/camembert-base-test")
# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM

tokenizer = AutoTokenizer.from_pretrained("williamC21/camembert-base-test")
model = AutoModelForMaskedLM.from_pretrained("williamC21/camembert-base-test")
Quick Links
A newer version of this model is available: Qwen/Qwen3.5-35B-A3B

license: apache-2.0 tags: - text-classification - glue - mrpc datasets: - glue language: - en

bert-finetuned-mrpc-v2

Fine-tuned BERT-base-uncased on MRPC (GLUE benchmark) for paraphrase detection.

Model details

  • Base model: google-bert/bert-base-uncased
  • Task: Binary classification (paraphrase or not)
  • Language: English
  • Training data: GLUE MRPC train split
  • Evaluation data: GLUE MRPC validation split
  • Epochs: 3
  • Batch size: 16
  • Learning rate: 2e-5

How to use

from transformers import pipeline

classifier = pipeline("text-classification", model="tu-usuario/bert-finetuned-mrpc-v2")
result = classifier("The two sentences mean the same thing.")
print(result)
Downloads last month
-
Safetensors
Model size
0.1B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for williamC21/camembert-base-test

Finetuned
(127)
this model

Dataset used to train williamC21/camembert-base-test