consciousAI commited on
Commit
d494b6e
·
1 Parent(s): 0439a87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -10,11 +10,11 @@ model-index:
10
 
11
  # Question Answering Generative
12
  The model is intended to be used for Q&A task, given the question & context, the model would attempt to infer the answer text.<br>
13
- Model is generative (t5-v1-base), fine-tuned from [question-generation-auto-hints-t5-v1-base-s-q-c](https://huggingface.co/anshoomehra/question-generation-auto-hints-t5-v1-base-s-q-c) with - **Loss:** 0.6751 & **Rougel:** 0.8022 performance scores.
14
 
15
- [Live Demo: Question Answering Encoders vs Generative](https://huggingface.co/spaces/anshoomehra/question_answering)
16
 
17
- [Encoder based Question Answering](https://huggingface.co/anshoomehra/question-answering-roberta-base-s/)
18
 
19
  Example code:
20
 
@@ -44,7 +44,7 @@ def _generate(query, context, model, device):
44
  return str(output[0])
45
 
46
  device = [0 if torch.cuda.is_available() else 'cpu'][0]
47
- _generate(query, context, model="anshoomehra/t5-v1-base-s-q-c-multi-task-qgen-v2", device=device)
48
  ```
49
 
50
  ### Training hyperparameters
 
10
 
11
  # Question Answering Generative
12
  The model is intended to be used for Q&A task, given the question & context, the model would attempt to infer the answer text.<br>
13
+ Model is generative (t5-v1-base), fine-tuned from [question-generation-auto-hints-t5-v1-base-s-q-c](https://huggingface.co/consciousAI/question-generation-auto-hints-t5-v1-base-s-q-c) with - **Loss:** 0.6751 & **Rougel:** 0.8022 performance scores.
14
 
15
+ [Live Demo: Question Answering Encoders vs Generative](https://huggingface.co/spaces/consciousAI/question_answering)
16
 
17
+ [Encoder based Question Answering](https://huggingface.co/consciousAI/question-answering-roberta-base-s/)
18
 
19
  Example code:
20
 
 
44
  return str(output[0])
45
 
46
  device = [0 if torch.cuda.is_available() else 'cpu'][0]
47
+ _generate(query, context, model="consciousAI/t5-v1-base-s-q-c-multi-task-qgen-v2", device=device)
48
  ```
49
 
50
  ### Training hyperparameters