consciousAI
commited on
Commit
•
a8328c6
1
Parent(s):
23a3a4e
Update README.md
Browse files
README.md
CHANGED
@@ -13,15 +13,15 @@ model-index:
|
|
13 |
The model is intended to be used for Q&A task, given the question & context, the model would attempt to infer the answer text, answer span & confidence score.<br>
|
14 |
Model is encoder-only (roberta-base) with QuestionAnswering LM Head, fine-tuned on SQUADx dataset with **exact_match:** 86.14 & **f1:** 92.330 performance scores.
|
15 |
|
16 |
-
[Live Demo: Question Answering Encoders vs Generative](https://huggingface.co/spaces/
|
17 |
|
18 |
-
Please follow this link for [Generative Question Answering](https://huggingface.co/
|
19 |
|
20 |
Example code:
|
21 |
```
|
22 |
from transformers import pipeline
|
23 |
|
24 |
-
model_checkpoint = "
|
25 |
|
26 |
context = """
|
27 |
🤗 Transformers is backed by the three most popular deep learning libraries — Jax, PyTorch and TensorFlow — with a seamless integration
|
|
|
13 |
The model is intended to be used for Q&A task, given the question & context, the model would attempt to infer the answer text, answer span & confidence score.<br>
|
14 |
Model is encoder-only (roberta-base) with QuestionAnswering LM Head, fine-tuned on SQUADx dataset with **exact_match:** 86.14 & **f1:** 92.330 performance scores.
|
15 |
|
16 |
+
[Live Demo: Question Answering Encoders vs Generative](https://huggingface.co/spaces/consciousAI/question_answering)
|
17 |
|
18 |
+
Please follow this link for [Generative Question Answering](https://huggingface.co/consciousAI/question-answering-generative-t5-v1-base-s-q-c/)
|
19 |
|
20 |
Example code:
|
21 |
```
|
22 |
from transformers import pipeline
|
23 |
|
24 |
+
model_checkpoint = "consciousAI/question-answering-roberta-base-s"
|
25 |
|
26 |
context = """
|
27 |
🤗 Transformers is backed by the three most popular deep learning libraries — Jax, PyTorch and TensorFlow — with a seamless integration
|