toolevalxm/SuperDataset-QualityRelease
SuperDataset 1. Introduction SuperDataset represents a new generation of curated training data for natural language processing tasks. Our latest release incorporates advanced data curation techniques including automated quality filtering, cross-validation with multiple annotators, and comprehensive bias detection. The dataset demonstrates exceptional quality metrics across all evaluation dimensions. Compared to the previous version… See the full description on the dataset page: https://huggingface.co/datasets/toolevalxm/SuperDataset-QualityRelease.
SuperDataset
<!-- markdownlint-disable first-line-h1 --> <!-- markdownlint-disable html --> <!-- markdownlint-disable no-duplicate-header -->
<div align="center"> <img src="figures/fig1.png" width="60%" alt="SuperDataset" /> </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
SuperDataset represents a new generation of curated training data for natural language processing tasks. Our latest release incorporates advanced data curation techniques including automated quality filtering, cross-validation with multiple annotators, and comprehensive bias detection. The dataset demonstrates exceptional quality metrics across all evaluation dimensions.
<p align="center"> <img width="80%" src="figures/fig3.png"> </p>
Compared to the previous version, the upgraded dataset shows significant improvements in data quality. For instance, annotation accuracy has increased from 82% in the previous version to 94.5% in the current version. This advancement stems from our enhanced multi-stage annotation pipeline and improved quality control mechanisms.
Beyond its improved quality metrics, this version also offers reduced noise levels and enhanced domain coverage.
2. Quality Metrics
Comprehensive Quality Results
<div align="center">
</div>
Overall Quality Summary
SuperDataset demonstrates superior quality across all evaluated metric categories, with particularly notable results in data integrity and safety metrics.
3. Data Access & API Platform
We offer a data browser interface and API for you to access SuperDataset. Please check our official website for more details.
4. How to Use Locally
Please refer to our code repository for more information about using SuperDataset locally.
Compared to previous versions, the usage recommendations for SuperDataset have the following changes:
- Streaming download is supported.
- It is not required to manually validate data format - automatic validation is included.
Loading the Dataset
We recommend using the following code pattern:
from datasets import load_dataset
dataset = load_dataset("SuperDataset")For example,
from datasets import load_dataset
dataset = load_dataset("SuperDataset", split="train")
print(dataset[0])Batch Size
We recommend setting the batch_size parameter to 32 for optimal loading performance.
Data Filtering
For data filtering, please follow the template below, where {filtercolumn}, {filtervalue} and {operation} are arguments.
filter_template = \
"""dataset.filter(lambda x: x['{filter_column}'] {operation} {filter_value})"""5. License
This dataset is licensed under the Apache 2.0 License. The use of SuperDataset 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 contact@SuperDataset.ai.
