Instructions to use ClassCat/roberta-base-french with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ClassCat/roberta-base-french with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="ClassCat/roberta-base-french")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("ClassCat/roberta-base-french") model = AutoModelForMaskedLM.from_pretrained("ClassCat/roberta-base-french") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,6 +7,7 @@ datasets:
|
|
| 7 |
widget:
|
| 8 |
- text: "Je vais à la <mask>."
|
| 9 |
- text: "J'aime le <mask>."
|
|
|
|
| 10 |
- text: "Je m'appelle <mask>."
|
| 11 |
- text: "J'ai beaucoup d'<mask>."
|
| 12 |
|
|
|
|
| 7 |
widget:
|
| 8 |
- text: "Je vais à la <mask>."
|
| 9 |
- text: "J'aime le <mask>."
|
| 10 |
+
- text: "J'ai ouvert la <mask>."
|
| 11 |
- text: "Je m'appelle <mask>."
|
| 12 |
- text: "J'ai beaucoup d'<mask>."
|
| 13 |
|