Update README.md
Browse files
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 |
-
|
| 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 |
|