Instructions to use autoevaluate/extractive-question-answering-not-evaluated with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use autoevaluate/extractive-question-answering-not-evaluated with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="autoevaluate/extractive-question-answering-not-evaluated")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("autoevaluate/extractive-question-answering-not-evaluated") model = AutoModelForQuestionAnswering.from_pretrained("autoevaluate/extractive-question-answering-not-evaluated") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#4
by librarian-bot - opened
README.md
CHANGED
|
@@ -5,6 +5,7 @@ tags:
|
|
| 5 |
datasets:
|
| 6 |
- squad
|
| 7 |
duplicated_from: autoevaluate/extractive-question-answering
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
|
| 5 |
datasets:
|
| 6 |
- squad
|
| 7 |
duplicated_from: autoevaluate/extractive-question-answering
|
| 8 |
+
base_model: distilbert-base-uncased
|
| 9 |
---
|
| 10 |
|
| 11 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|