mojians commited on
Commit
6c1d5c5
1 Parent(s): b895814

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -35
README.md CHANGED
@@ -1,35 +1,39 @@
1
- ---
2
- datasets:
3
- - squad
4
- tags:
5
- - question-generation
6
- - question-answer mining
7
- widget:
8
- - text: "context: The English name 'Normans' comes from the French words Normans/Normanz, plural of Normant, modern French normand, which is itself borrowed from Old Low Franconian Nortmann 'Northman' or directly from Old Norse Norðmaðr, Latinized variously as Nortmannus, Normannus, or Nordmannus (recorded in Medieval Latin, 9th century) to mean 'Norseman, Viking'. generate questions and answers:"
9
- inference:
10
- parameters:
11
- min_length: 50
12
-
13
- license: mit
14
- ---
15
-
16
- # Model name
17
-
18
- ## Model description
19
-
20
- This model mines the question-answer pairs from a given context in an end2end fashion. It takes a context as an input and generates a list of questions and answers as an output. It is based on a pre-trained `t5-small` model and uses a prompt enigneering technique to train.
21
-
22
-
23
- #### How to use
24
-
25
- The model takes the context (with prompt) as an input sequence and will generate question-answer pairs as an output sequence. The max sequence length is 512 tokens. Inputs should be organized into the following format:
26
- ```
27
- context: context text here. generate questions and answers:
28
- ```
29
- The input sequence can then be encoded and passed as the `input_ids` argument in the model's `generate()` method.
30
-
31
-
32
- #### Limitations and bias
33
- The model is limited to generating questions in the same style as those found in [SQuAD](https://rajpurkar.github.io/SQuAD-explorer/), The generated questions can potentially be leading or reflect biases that are present in the context. If the context is too short or completely absent, or if the context and answer do not match, the generated question is likely to be incoherent.
34
- ## Training data
35
- The model was fine-tuned on a dataset made up of several well-known QA datasets ([SQuAD](https://rajpurkar.github.io/SQuAD-explorer/))
 
 
 
 
 
1
+ ---
2
+ datasets:
3
+ - squad
4
+ tags:
5
+ - question-generation
6
+ - question-answer mining
7
+ widget:
8
+ - text: "context: The English name 'Normans' comes from the French words Normans/Normanz, plural of Normant, modern French normand, which is itself borrowed from Old Low Franconian Nortmann 'Northman' or directly from Old Norse Norðmaðr, Latinized variously as Nortmannus, Normannus, or Nordmannus (recorded in Medieval Latin, 9th century) to mean 'Norseman, Viking'. generate questions and answers:"
9
+ inference:
10
+ parameters:
11
+ min_length: 50
12
+
13
+ license: mit
14
+ ---
15
+
16
+ # Model name
17
+
18
+ ## Model description
19
+
20
+ This model mines the question-answer pairs from a given context in an end2end fashion. It takes a context as an input and generates a list of questions and answers as an output. It is based on a pre-trained `t5-small` model and uses a prompt enigneering technique to train.
21
+
22
+
23
+ #### How to use
24
+
25
+ The model takes the context (with prompt) as an input sequence and will generate question-answer pairs as an output sequence. The max sequence length is 512 tokens. Inputs should be organized into the following format:
26
+ ```
27
+ context: context text here. generate questions and answers:
28
+ ```
29
+ The input sequence can then be encoded and passed as the `input_ids` argument in the model's `generate()` method.
30
+
31
+
32
+ #### Limitations and bias
33
+ The model is limited to generating questions in the same style as those found in [SQuAD](https://rajpurkar.github.io/SQuAD-explorer/), The generated questions can potentially be leading or reflect biases that are present in the context. If the context is too short or completely absent, or if the context and answer do not match, the generated question is likely to be incoherent.
34
+ ## Training data
35
+ The model was fine-tuned on a dataset made up of several well-known QA datasets ([SQuAD](https://rajpurkar.github.io/SQuAD-explorer/))
36
+
37
+
38
+ ## Source and Citation
39
+ Please find our source and cites us in this repo [https://github.com/jian-mo/E2E-QA-Mining](https://github.com/jian-mo/E2E-QA-Mining)