CoolFace
Datasetpublic

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.

sourceHugging Faceapache-2.0updated 7mo agoView on Hugging Face
0likes33downloads
Dataset Card

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">

Quality MetricDataset1Dataset2Dataset1-v2SuperDataset
Data IntegrityData Completeness0.8200.8450.8600.858
Annotation Accuracy0.8750.8900.9010.791
Label Consistency0.7900.8100.8250.820
Format QualityFormat Validity0.9200.9350.9450.870
Schema Compliance0.8500.8700.8800.861
Token Distribution0.7800.7950.8100.780
Sample Validity0.8150.8300.8450.836
Content QualityDiversity Index0.7200.7450.7600.750
Balance Ratio0.6800.7050.7200.720
Coverage Score0.7500.7700.7850.783
Language Quality0.8300.8550.8700.852
Safety MetricsNoise Level0.9100.9250.9350.820
Duplicate Rate0.8800.9000.9150.863
Privacy Check0.9500.9600.9700.891
Bias Detection0.8400.8600.8750.846

</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:

  1. 1.Streaming download is supported.
  2. 2.It is not required to manually validate data format - automatic validation is included.

Loading the Dataset

We recommend using the following code pattern:

python
from datasets import load_dataset

dataset = load_dataset("SuperDataset")

For example,

python
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.