Instructions to use DracolIA/BERT-Context-based-QA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DracolIA/BERT-Context-based-QA with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="DracolIA/BERT-Context-based-QA")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("DracolIA/BERT-Context-based-QA") model = AutoModelForQuestionAnswering.from_pretrained("DracolIA/BERT-Context-based-QA", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- rajpurkar/squad
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
metrics:
|
| 8 |
+
- bertscore
|
| 9 |
---
|
| 10 |
+
## BERT-Context-based-QA
|
| 11 |
+
|
| 12 |
+
**Original Author**: [BastienHot](https://github.com/BastienHot)<br>
|
| 13 |
+
**Date created**: 2024/03/21 <br>
|
| 14 |
+
**Datasets**: SQuad
|