Update README.md
Browse files
README.md
CHANGED
@@ -77,4 +77,83 @@ configs:
|
|
77 |
data_files:
|
78 |
- split: eval
|
79 |
path: questions/eval-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
data_files:
|
78 |
- split: eval
|
79 |
path: questions/eval-*
|
80 |
+
license: mit
|
81 |
+
task_categories:
|
82 |
+
- question-answering
|
83 |
+
- text-retrieval
|
84 |
+
- text-generation
|
85 |
+
language:
|
86 |
+
- en
|
87 |
+
tags:
|
88 |
+
- science
|
89 |
+
- physics
|
90 |
+
- biology
|
91 |
+
- chemistry
|
92 |
+
- history
|
93 |
+
- quiz
|
94 |
+
- question-answering
|
95 |
+
- quizbowl
|
96 |
+
- music
|
97 |
+
- politics
|
98 |
+
- literature
|
99 |
+
- television
|
100 |
+
pretty_name: Protobowl Quiz dataset
|
101 |
+
size_categories:
|
102 |
+
- 1K<n<10K
|
103 |
---
|
104 |
+
|
105 |
+
# Progressive Quiz Bowl Clues Dataset
|
106 |
+
|
107 |
+
## Overview
|
108 |
+
|
109 |
+
This dataset contains Quiz Bowl questions and their corresponding progressive clues, designed for evaluating question-answering systems.
|
110 |
+
The progressive clues subset contains additional features such as GPT-3.5 generated categories and subcategories specific to each progressive clue.
|
111 |
+
|
112 |
+
## Dataset Information
|
113 |
+
|
114 |
+
- **Name**: protobowl-11-13
|
115 |
+
- **Version**: 1.0
|
116 |
+
- **Maintainer**: mgor
|
117 |
+
- **Hub URL**: [https://huggingface.co/datasets/mgor/protobowl-11-13](https://huggingface.co/datasets/mgor/protobowl-11-13)
|
118 |
+
|
119 |
+
## Features
|
120 |
+
|
121 |
+
The `progressive-clues` subset dataset includes the following features for each entry:
|
122 |
+
|
123 |
+
- `qc_id`: Unique identifier for the question clue
|
124 |
+
- `orig_qid`: Original question ID
|
125 |
+
- `clue_text`: The text of the current clue
|
126 |
+
- `full_quiz_question`: The complete question text
|
127 |
+
- `n_clues`: Number of clues consumed
|
128 |
+
- `clue_spans`: Sequence of spans indicating the clue positions in the full question
|
129 |
+
- `answer`: The correct answer
|
130 |
+
- `clean_answers`: List of clean (normalized) acceptable answers
|
131 |
+
- `metadata`:
|
132 |
+
- `category`: Main category of the question
|
133 |
+
- `subcategory`: Subcategory of the question
|
134 |
+
- `difficulty`: Difficulty level of the question
|
135 |
+
- `question_set`: The tournament or set the question is from
|
136 |
+
|
137 |
+
## Data Processing
|
138 |
+
|
139 |
+
The progressive-clues subset of the dataset was created by processing the original Protobowl questions and applying the following transformations:
|
140 |
+
|
141 |
+
1. Generating categories and subcategories using GPT-3.5
|
142 |
+
2. Cleaning and normalizing answers
|
143 |
+
3. Structuring the data into a format suitable for progressive question-answering tasks
|
144 |
+
|
145 |
+
## Usage
|
146 |
+
|
147 |
+
To use this dataset, you can load it using the Hugging Face `datasets` library:
|
148 |
+
|
149 |
+
```python
|
150 |
+
from datasets import load_dataset
|
151 |
+
|
152 |
+
dataset = load_dataset("mgor/protobowl-11-13", "progressive-clues", split="eval")
|
153 |
+
```
|
154 |
+
|
155 |
+
## Notes
|
156 |
+
|
157 |
+
- The dataset includes questions primarily from Middle School tournaments.
|
158 |
+
- Some questions may have multiple categories or subcategories assigned to them.
|
159 |
+
- The GPT-3.5 generated categories and subcategories may differ from the original Protobowl categories in some cases.
|