CoolFace
Datasetpublic

toolevalxm/CuratedTextCorpus-TestRepo

CuratedTextCorpus 1. Introduction The CuratedTextCorpus dataset represents a major advancement in high-quality text data for NLP tasks. Through rigorous curation and validation processes, we have assembled a collection that meets the highest standards for machine learning applications. The dataset excels in text classification, question answering, and general language understanding tasks. Compared to previous versions, this curated… See the full description on the dataset page: https://huggingface.co/datasets/toolevalxm/CuratedTextCorpus-TestRepo.

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

CuratedTextCorpus

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

<div align="center"> <img src="figures/fig1.png" width="60%" alt="CuratedTextCorpus" /> </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 CuratedTextCorpus dataset represents a major advancement in high-quality text data for NLP tasks. Through rigorous curation and validation processes, we have assembled a collection that meets the highest standards for machine learning applications. The dataset excels in text classification, question answering, and general language understanding tasks.

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

Compared to previous versions, this curated dataset shows significant improvements in data quality metrics. For instance, in duplicate detection tests, the deduplication rate has improved from 85% to 99.2%. This advancement stems from our enhanced preprocessing pipeline that now includes semantic similarity checks in addition to exact matching.

Beyond improved deduplication, this version also offers reduced noise levels, better annotation consistency, and enhanced domain coverage.

2. Quality Metrics

Comprehensive Quality Assessment

<div align="center">

MetricBaselinev1.0v2.0CuratedTextCorpus
Data CompletenessCompleteness0.8210.8550.8710.877
Consistency0.7560.7820.8010.806
Accuracy0.6890.7210.7450.751
Data ValidityValidity0.8120.8340.8560.861
Uniqueness0.9010.9250.9410.945
Timeliness0.6670.6980.7210.727
Data IntegrityIntegrity0.7780.8010.8230.828
Relevance0.7120.7380.7610.766
Coverage0.6450.6780.7020.708
Additional MetricsConformity0.8340.8560.8780.883
Precision0.7230.7510.7760.782
Reliability0.7890.8120.8340.839

</div>

Overall Quality Summary

The CuratedTextCorpus demonstrates exceptional quality across all evaluated metrics, with particularly strong results in completeness and integrity assessments.

3. Data Access & API

We provide direct access to the dataset through our data portal. Please check our official documentation for API access details.

4. How to Use

Please refer to our documentation for information on loading and using CuratedTextCorpus.

Usage recommendations for CuratedTextCorpus:

  1. 1.Preprocessing scripts are included for common NLP tasks.
  2. 2.Balanced sampling utilities are available for imbalanced labels.

The data format follows standard HuggingFace datasets conventions with train/validation/test splits.

Loading the Dataset

python
from datasets import load_dataset

dataset = load_dataset("username/CuratedTextCorpus")

Data Fields

The dataset includes the following fields:

  • —text: The main text content
  • —label: Classification label (if applicable)
  • —metadata: Additional context information

Recommended Preprocessing

python
from transformers import AutoTokenizer

tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased")

def preprocess(examples):
    return tokenizer(examples["text"], truncation=True, padding=True)

tokenized_dataset = dataset.map(preprocess, batched=True)

5. License

This dataset is licensed under the Apache 2.0 License. The use of CuratedTextCorpus is subject to the license terms. Commercial use is permitted with attribution.

6. Contact

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