kaejo98 commited on
Commit
2fdf0a4
1 Parent(s): 9d05e46

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -2
README.md CHANGED
@@ -12,13 +12,22 @@ should probably proofread and complete it, then remove this comment. -->
12
 
13
  # t5_base_question_generation
14
 
15
- This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on an unknown dataset.
16
 
17
  ## Model description
18
 
19
  More information needed
20
 
21
- ## Intended uses & limitations
 
 
 
 
 
 
 
 
 
22
 
23
  More information needed
24
 
 
12
 
13
  # t5_base_question_generation
14
 
15
+ This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on an SQUAD dataset for QA.
16
 
17
  ## Model description
18
 
19
  More information needed
20
 
21
+ ## Intended uses
22
+ The model takes context as an input sequence, and will generate a full question sentence as an output sequence. The max sequence length is 512 tokens. Inputs should be organised into the following format:
23
+
24
+ <generate_questions> paragraph: context text here
25
+
26
+ The input sequence can then be encoded and passed as the input_ids argument in the model's generate() method.
27
+
28
+
29
+
30
+ ## limitations
31
 
32
  More information needed
33