Instructions to use TimoImhof/roberta-finetuned-squad with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TimoImhof/roberta-finetuned-squad with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="TimoImhof/roberta-finetuned-squad")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("TimoImhof/roberta-finetuned-squad") model = AutoModelForQuestionAnswering.from_pretrained("TimoImhof/roberta-finetuned-squad") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,4 +3,7 @@ datasets:
|
|
| 3 |
- squad
|
| 4 |
metrics:
|
| 5 |
- squad
|
| 6 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
- squad
|
| 4 |
metrics:
|
| 5 |
- squad
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
This is the "roberta-base" model with a question answering head, trained on the "squad" dataset.
|
| 9 |
+
It serves as baseline model to compare with.
|