Instructions to use thatdramebaazguy/roberta-base-squad with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use thatdramebaazguy/roberta-base-squad with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="thatdramebaazguy/roberta-base-squad")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("thatdramebaazguy/roberta-base-squad") model = AutoModelForQuestionAnswering.from_pretrained("thatdramebaazguy/roberta-base-squad") - Notebooks
- Google Colab
- Kaggle
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,20 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
language:
|
| 6 |
-
- English
|
| 7 |
-
|
| 8 |
-
thumbnail:
|
| 9 |
-
|
| 10 |
tags:
|
| 11 |
- roberta
|
| 12 |
- roberta-base
|
| 13 |
- question-answering
|
| 14 |
- qa
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
---
|
| 19 |
# roberta-base + SQuAD QA
|
| 20 |
|
|
|
|
| 1 |
---
|
| 2 |
+
language: en
|
| 3 |
+
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
tags:
|
| 5 |
- roberta
|
| 6 |
- roberta-base
|
| 7 |
- question-answering
|
| 8 |
- qa
|
| 9 |
+
datasets:
|
| 10 |
+
- SQuAD
|
|
|
|
| 11 |
---
|
| 12 |
# roberta-base + SQuAD QA
|
| 13 |
|