Text Classification
Transformers
Safetensors
Abkhaz
camembert
fill-mask
code
text-embeddings-inference
Instructions to use williamC21/camembert-base-test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use williamC21/camembert-base-test with Transformers:
# 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") - Notebooks
- Google Colab
- Kaggle
| library_name: transformers | |
| license: apache-2.0 | |
| datasets: | |
| - nohurry/Opus-4.6-Reasoning-3000x-filtered | |
| language: | |
| - ab | |
| base_model: | |
| - Qwen/Qwen3.5-35B-A3B | |
| new_version: Qwen/Qwen3.5-35B-A3B | |
| pipeline_tag: text-classification | |
| tags: | |
| - code | |
| 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 | |
| ```python | |
| 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) |