vahmohh commited on
Commit
f2895d8
1 Parent(s): d8c4a7a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 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.
2
+
3
+ The following format should be used for generating questions.
4
+ ```sh
5
+ generate question: domain_specific_text </sep> answer_1 </sep> answer_2 </sep> ... </sep> answer_n </end>
6
+ ```
7
+ Output:
8
+ ```sh
9
+ question_1 </sep> question_2 </sep> ... </sep> question_n </end>
10
+ ```
11
+ The following format should be used for generating answers.
12
+ ```sh
13
+ generate answer: domain_specific_text </end>
14
+ ```
15
+ Output:
16
+ ```sh
17
+ answer_1 </sep> answer_2 </sep> ... </sep> answer_n </end>
18
+ ```