gsarti commited on
Commit
1b2f56b
1 Parent(s): f2b5438

Updated readme

Browse files
Files changed (1) hide show
  1. README.md +8 -1
README.md CHANGED
@@ -93,7 +93,14 @@ The text is provided as-is, without further preprocessing or tokenization.
93
  The `questions` configuration contains a small subset of questions, the top retrieved paragraph relevant to the question and the answer spans. An example from the `test` split of the `questions` config is provided below.
94
 
95
  ```json
96
-
 
 
 
 
 
 
 
97
  ```
98
 
99
  ### Data Splits
93
  The `questions` configuration contains a small subset of questions, the top retrieved paragraph relevant to the question and the answer spans. An example from the `test` split of the `questions` config is provided below.
94
 
95
  ```json
96
+ {
97
+ "chapter": "Regular Expressions",
98
+ "section": "Regular Expressions",
99
+ "subsection": "Basic Regular Expressions",
100
+ "question": "What is the meaning of the Kleene star in Regex?",
101
+ "paragraph": "This language consists of strings with a b, followed by at least two a's, followed by an exclamation point. The set of operators that allows us to say things like \"some number of as\" are based on the asterisk or *, commonly called the Kleene * (gen-Kleene * erally pronounced \"cleany star\"). The Kleene star means \"zero or more occurrences of the immediately previous character or regular expression\". So /a*/ means \"any string of zero or more as\". This will match a or aaaaaa, but it will also match Off Minor since the string Off Minor has zero a's. So the regular expression for matching one or more a is /aa*/, meaning one a followed by zero or more as. More complex patterns can also be repeated. So /[ab]*/ means \"zero or more a's or b's\" (not \"zero or more right square braces\"). This will match strings like aaaa or ababab or bbbb.",
102
+ "answer": "The Kleene star means \"zero or more occurrences of the immediately previous character or regular expression\""
103
+ }
104
  ```
105
 
106
  ### Data Splits