metadata
dataset_info:
- config_name: progressive-clues
features:
- name: qc_id
dtype: string
- name: clue_text
dtype: string
- name: n_clues
dtype: int32
- name: clean_answers
sequence: string
- name: orig_qid
dtype: string
- name: full_quiz_question
dtype: string
- name: clue_spans
sequence:
sequence: int32
- name: orig_answer_string
dtype: string
- name: metadata
struct:
- name: category
dtype: string
- name: subcategory
dtype: string
- name: level
dtype: string
- name: question_set
dtype: string
splits:
- name: eval
num_bytes: 2799081
num_examples: 3042
download_size: 1269797
dataset_size: 2799081
- config_name: questions
features:
- name: qid
dtype: string
- name: category
dtype: string
- name: subcategory
dtype: string
- name: question
dtype: string
- name: clue_spans
sequence:
sequence: int32
- name: answer
dtype: string
- name: answer_primary
dtype: string
- name: clean_answers
sequence: string
- name: wiki_page
dtype: string
- name: page_summary
dtype: string
- name: difficulty
dtype: string
- name: question_set
dtype: string
splits:
- name: eval
num_bytes: 2250701
num_examples: 782
download_size: 1205383
dataset_size: 2250701
configs:
- config_name: progressive-clues
data_files:
- split: eval
path: progressive-clues/eval-*
- config_name: questions
data_files:
- split: eval
path: questions/eval-*
license: mit
task_categories:
- question-answering
- text-retrieval
- text-generation
language:
- en
tags:
- science
- physics
- biology
- chemistry
- history
- quiz
- question-answering
- quizbowl
- music
- politics
- literature
- television
pretty_name: Protobowl Quiz dataset
size_categories:
- 1K<n<10K
Progressive Quiz Bowl Clues Dataset
Overview
This dataset contains Quiz Bowl questions and their corresponding progressive clues, designed for evaluating question-answering systems. The progressive clues subset contains additional features such as GPT-3.5 generated categories and subcategories specific to each progressive clue.
Dataset Information
- Name: protobowl-11-13
- Version: 1.0
- Maintainer: mgor
- Hub URL: https://huggingface.co/datasets/mgor/protobowl-11-13
Features
The progressive-clues
subset dataset includes the following features for each entry:
qc_id
: Unique identifier for the question clueorig_qid
: Original question IDclue_text
: The text of the current cluefull_quiz_question
: The complete question textn_clues
: Number of clues consumedclue_spans
: Sequence of spans indicating the clue positions in the full questionanswer
: The correct answerclean_answers
: List of clean (normalized) acceptable answersmetadata
:category
: Main category of the questionsubcategory
: Subcategory of the questiondifficulty
: Difficulty level of the questionquestion_set
: The tournament or set the question is from
Data Processing
The progressive-clues subset of the dataset was created by processing the original Protobowl questions and applying the following transformations:
- Generating categories and subcategories using GPT-3.5
- Cleaning and normalizing answers
- Structuring the data into a format suitable for progressive question-answering tasks
Usage
To use this dataset, you can load it using the Hugging Face datasets
library:
from datasets import load_dataset
dataset = load_dataset("mgor/protobowl-11-13", "progressive-clues", split="eval")
Notes
- The dataset includes questions primarily from Middle School tournaments.
- Some questions may have multiple categories or subcategories assigned to them.
- The GPT-3.5 generated categories and subcategories may differ from the original Protobowl categories in some cases.