Instructions to use VMware/tinyroberta-mrqa with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use VMware/tinyroberta-mrqa with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="VMware/tinyroberta-mrqa")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("VMware/tinyroberta-mrqa") model = AutoModelForQuestionAnswering.from_pretrained("VMware/tinyroberta-mrqa") - Notebooks
- Google Colab
- Kaggle
Commit 路
a3dae86
1
Parent(s): 68d1c9e
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,7 +13,7 @@ model-index:
|
|
| 13 |
- name: VMware/TinyRoBERTa-MRQA
|
| 14 |
results:
|
| 15 |
- task:
|
| 16 |
-
type:
|
| 17 |
dataset:
|
| 18 |
type: mrqa-2019 # Required. Example: common_voice. Use dataset id from https://hf.co/datasets
|
| 19 |
name: mrqa # Required. A pretty name for the dataset. Example: Common Voice (French)
|
|
|
|
| 13 |
- name: VMware/TinyRoBERTa-MRQA
|
| 14 |
results:
|
| 15 |
- task:
|
| 16 |
+
type: Question-Answering
|
| 17 |
dataset:
|
| 18 |
type: mrqa-2019 # Required. Example: common_voice. Use dataset id from https://hf.co/datasets
|
| 19 |
name: mrqa # Required. A pretty name for the dataset. Example: Common Voice (French)
|