Datasets:

Languages:
English
ArXiv:
License:
Jingmiao commited on
Commit
4e36bce
1 Parent(s): 1e1e3ae

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -2
README.md CHANGED
@@ -6,7 +6,13 @@ license: apache-2.0
6
  # Incomplete, author will come back soon.
7
 
8
  ### Acknowledgements
9
- The data is scraped from [NPR Sunday Puzzle Official Website](https://www.npr.org/series/4473090/sunday-puzzle) and [NPR Puzzle Synopsis](https://groups.google.com/g/nprpuzzle),
10
  made by a group of fans by running a mailing list that distributed questions and answers for each week’s puzzle.
11
- The author of the dataset cleaned the data and made some multiple choice based on the question and answers.
12
 
 
 
 
 
 
 
 
6
  # Incomplete, author will come back soon.
7
 
8
  ### Acknowledgements
9
+ The PUZZLEQA is scraped from [NPR Sunday Puzzle Official Website](https://www.npr.org/series/4473090/sunday-puzzle) and [NPR Puzzle Synopsis](https://groups.google.com/g/nprpuzzle),
10
  made by a group of fans by running a mailing list that distributed questions and answers for each week’s puzzle.
11
+ The authors of the dataset cleaned the data and made some multiple choice based on the question and answers.
12
 
13
+ ### Creation
14
+ The Multiple Choice Dataset is generated from PUZZLEQA dataset using the following algorithm.
15
+ 1. Read the PUZZLEQA.tsv file
16
+ 2. Group rule-question-answer triples in a given Sunday together (so the rules of each question will be the same)
17
+ 3. For each question, randomly select three other answers from answers on the same Sunday. Shuffle 3 selected answers with the correct answer for the given question to obtain 4 choices for this question. \\
18
+ 4. identify the correct answer for the given question as the "gold" answer.