iarfmoose commited on
Commit
1bfc9d4
1 Parent(s): f4334e6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -12,7 +12,7 @@ The model is trained to generate reading comprehension-style questions with answ
12
 
13
  The model takes concatenated answers and 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:
14
  ```
15
- answer_token <answer-phrase> context_token <context-from-text>
16
  ```
17
  The input sequence can then be encoded and passed as the `input_ids` argument in the model's `generate()` method.
18
 
12
 
13
  The model takes concatenated answers and 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:
14
  ```
15
+ <answer> answer text here <context> context text here
16
  ```
17
  The input sequence can then be encoded and passed as the `input_ids` argument in the model's `generate()` method.
18