Anshoo Mehra commited on
Commit
f395a2f
1 Parent(s): 41db48c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -10,9 +10,11 @@ model-index:
10
  ---
11
 
12
  # Question Answering
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.
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
  Example code:
17
  ```
18
  from transformers import pipeline
 
10
  ---
11
 
12
  # Question Answering
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
+ Please follow this link for [Generative Question Answering](https://huggingface.co/anshoomehra/question-answering-generative-t5-v1-base-s-q-c/edit/main/README.md)
17
+
18
  Example code:
19
  ```
20
  from transformers import pipeline