kaejo98 commited on
Commit
113ad01
1 Parent(s): ba60400

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -2
README.md CHANGED
@@ -20,11 +20,26 @@ More information needed
20
 
21
  ## Intended uses & limitations
22
 
23
- More information needed
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  ## Training and evaluation data
26
 
27
- More information needed
 
 
 
 
28
 
29
  ## Training procedure
30
 
 
20
 
21
  ## Intended uses & limitations
22
 
23
+ The model takes context as an input sequence, and will generate a full question sentence as an output sequence. There are two ways the model can be queried produce the questions:
24
+ - <b> Casual-Generation </b>: where the model is tasked to generate questions answerable by a given passage. The input should be follow the structure or format: '\<generate_questions\> paragraph: put your passage text here'. <br/>
25
+ Example: <br/>
26
+ \<generate_questions\> paragraph: The lithosphere is broken into tectonic plates whose motion allows heat to escape from the interior of the Earth into space. The crust lies on top of the mantle, a configuration that is stable because the upper mantle is made of peridotite and is therefore significantly denser than the crust. The boundary between the crust and mantle is conventionally placed at the Mohorovičić discontinuity, a boundary defined by a contrast in seismic velocity.
27
+
28
+
29
+ - <b> Context-based-Generation </b>: given a section of a passage (context), the model is tasked to generate questions from the passage about the selected section or context. The input should be follow the structure or format: \<generate_context_questions\> \<section\> put your context here \</section\> paragraph: put your passage text here'. <br/>
30
+ Example: <br/>
31
+ \<generate_context_questions\> \<section\> Mohorovičić discontinuity \</section\> paragraph: The lithosphere is broken into tectonic plates whose motion allows heat to escape from the interior of the Earth into space. The crust lies on top of the mantle, a configuration that is stable because the upper mantle is made of peridotite and is therefore significantly denser than the crust. The boundary between the crust and mantle is conventionally placed at the Mohorovičić discontinuity, a boundary defined by a contrast in seismic velocity.
32
+
33
+
34
+ The input sequence can then be encoded and passed as the input_ids argument in the model's generate() method.
35
 
36
  ## Training and evaluation data
37
 
38
+ The dataset used to train the model comprises the training datasets from:
39
+ - Reasoning Over Paragraph Effects in Situations (ROPES): https://allenai.org/data/ropes
40
+ - SQUAD:
41
+ - DROP (Discrete Reasoning Over Paragraphs): https://allenai.org/data/drop
42
+ - SciQ
43
 
44
  ## Training procedure
45