CoolFace
Datasetpublic

toolevalxm/SuperQA-Dataset-TestRepo

SuperQA-Dataset 1. Introduction The SuperQA-Dataset represents a major advancement in question-answering benchmark datasets. In this latest release, we have significantly improved data quality through enhanced curation pipelines, rigorous validation processes, and comprehensive quality assurance measures. The dataset demonstrates exceptional performance across various data quality metrics, making it ideal for training and evaluating… See the full description on the dataset page: https://huggingface.co/datasets/toolevalxm/SuperQA-Dataset-TestRepo.

sourceHugging Faceapache-2.0updated 8mo agoView on Hugging Face
0likes36downloads
Dataset Card

SuperQA-Dataset

<!-- markdownlint-disable first-line-h1 --> <!-- markdownlint-disable html --> <!-- markdownlint-disable no-duplicate-header -->

<div align="center"> <img src="figures/fig1.png" width="60%" alt="SuperQA-Dataset" /> </div> <hr>

<div align="center" style="line-height: 1;"> <a href="LICENSE" style="margin: 2px;"> <img alt="License" src="figures/fig2.png" style="display: inline-block; vertical-align: middle;"/> </a> </div>

1. Introduction

The SuperQA-Dataset represents a major advancement in question-answering benchmark datasets. In this latest release, we have significantly improved data quality through enhanced curation pipelines, rigorous validation processes, and comprehensive quality assurance measures. The dataset demonstrates exceptional performance across various data quality metrics, making it ideal for training and evaluating state-of-the-art QA models.

<p align="center"> <img width="80%" src="figures/fig3.png"> </p>

Compared to previous versions, the upgraded dataset shows significant improvements in data quality. For instance, in terms of completeness, the dataset has improved from 85% in the previous version to 96.5% in the current version. This advancement stems from enhanced data collection methodologies: our new pipeline processes 3x more source documents while maintaining stricter quality thresholds.

Beyond improved completeness, this version also offers reduced noise, better answer coverage, and enhanced metadata annotations.

2. Quality Assessment Results

Comprehensive Quality Metrics

<div align="center">

MetricDataset-ADataset-BDataset-CSuperQA-Dataset
Core Quality MetricsCompleteness0.8450.8670.8820.965
Accuracy0.8910.9030.9120.972
Consistency0.8230.8410.8560.948
Temporal & ValidityTimeliness0.7560.7780.7920.891
Validity0.8120.8350.8480.938
Uniqueness0.9340.9420.9510.987
Integrity0.8670.8890.9010.961
Relevance & AccessRelevance0.7230.7450.7620.856
Accessibility0.9120.9250.9340.978
Conformity0.8340.8510.8670.945
Precision0.8780.8950.9080.968
Advanced QualityTraceability0.6890.7120.7310.823
Representativeness0.7560.7780.7950.889
Portability0.8230.8450.8610.941
Credibility0.9010.9180.9320.981

</div>

Overall Quality Summary

The SuperQA-Dataset demonstrates exceptional quality across all evaluated metric categories, with particularly notable results in accuracy, uniqueness, and credibility metrics.

3. Dataset Explorer & API

We offer a dataset explorer and API for you to interact with SuperQA-Dataset. Please check our official website for more details.

4. How to Use

Please refer to our code repository for more information about using SuperQA-Dataset.

Loading the Dataset

python
from datasets import load_dataset

dataset = load_dataset("your-username/SuperQA-Dataset-TestRepo")

Dataset Structure

The dataset contains the following splits:

  • —train: Training examples
  • —validation: Validation examples
  • —test: Test examples

Each example contains:

  • —question: The question text
  • —context: Relevant context passage
  • —answer: The correct answer
  • —metadata: Additional annotations

Recommended Usage

We recommend using this dataset with the following settings:

  1. 1.Use stratified sampling for training
  2. 2.Apply data augmentation carefully
  3. 3.Validate model outputs against the provided answer formats

Data Format

For loading, please follow the standard Hugging Face datasets format:

python
from datasets import load_dataset

# Load specific split
train_data = load_dataset("your-username/SuperQA-Dataset-TestRepo", split="train")

# Access examples
for example in train_data:
    question = example["question"]
    answer = example["answer"]

5. License

This dataset is licensed under the Apache 2.0 License. The use of SuperQA-Dataset is also subject to the Apache 2.0 License. The dataset supports commercial use and derivative works.

6. Contact

If you have any questions, please raise an issue on our GitHub repository or contact us at data@superqa-dataset.ai.