File size: 720 Bytes
126595b
 
f2895d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126595b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[www.github.com/vahmohh/masters-thesis](https://www.github.com/vahmohh/masters-thesis)

The model has been built upon the pre-trained T5 model by fine-tuning it on SQuAD dataset for the porpuse of automatic question and answer generation.

The following format should be used for generating questions.
  ```sh
  generate question: domain_specific_text </sep> answer_1 </sep> answer_2 </sep> ... </sep> answer_n </end>
  ```
  Output:
  ```sh
  question_1 </sep> question_2 </sep> ... </sep> question_n </end>
  ```
The following format should be used for generating answers.
  ```sh
  generate answer: domain_specific_text </end>
  ```
  Output:
  ```sh
  answer_1 </sep> answer_2 </sep> ... </sep> answer_n </end>
  ```