Instructions to use DeepPavlov/roberta-large-winogrande with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DeepPavlov/roberta-large-winogrande with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="DeepPavlov/roberta-large-winogrande")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("DeepPavlov/roberta-large-winogrande") model = AutoModelForSequenceClassification.from_pretrained("DeepPavlov/roberta-large-winogrande", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -6,6 +6,6 @@ datasets:
|
|
| 6 |
- winogrande
|
| 7 |
|
| 8 |
widget:
|
| 9 |
-
- text: "The roof of Rachel's home is old and falling apart, while Betty's is new. The home value of </s>
|
| 10 |
---
|
| 11 |
# roberta-large trained on winogrande-xl dataset in WNLI format
|
|
|
|
| 6 |
- winogrande
|
| 7 |
|
| 8 |
widget:
|
| 9 |
+
- text: "The roof of Rachel's home is old and falling apart, while Betty's is new. The home value of </s> Rachel is lower."
|
| 10 |
---
|
| 11 |
# roberta-large trained on winogrande-xl dataset in WNLI format
|