Update README.md
Browse files
README.md
CHANGED
|
@@ -70,3 +70,42 @@ configs:
|
|
| 70 |
- split: test
|
| 71 |
path: nvidia_domain/test.jsonl.zst
|
| 72 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
- split: test
|
| 71 |
path: nvidia_domain/test.jsonl.zst
|
| 72 |
---
|
| 73 |
+
# English Document Classification Dataset
|
| 74 |
+
|
| 75 |
+
This dataset provides a curated subset of the first **1 million rows** from the [allenai/c4](https://huggingface.co/datasets/allenai/c4) (English configuration), enriched with multi-perspective topic annotations. It is designed for researchers exploring document classification, domain adaptation, and label noise in massive web-crawled corpora.
|
| 76 |
+
|
| 77 |
+
## Dataset Summary
|
| 78 |
+
|
| 79 |
+
The dataset integrates predictions from five distinct classification models to provide a holistic view of each document’s content. To ensure utility, the data was stratified across these variables and split into **80/10/10%** (Train/Validation/Test) sets, organized into specific configurations based on the source classifier.
|
| 80 |
+
|
| 81 |
+
## Classifier Metadata & Schema
|
| 82 |
+
|
| 83 |
+
The following classifiers were used to generate the annotation columns:
|
| 84 |
+
|
| 85 |
+
| Classifier | Column Name | Description |
|
| 86 |
+
| --- | --- | --- |
|
| 87 |
+
| [`nvidia/domain-classifier`](https://huggingface.co/nvidia/domain-classifier) | **nvidia_domain** | General web domain categorization. |
|
| 88 |
+
| [`classla/multilingual-IPTC-news-topic-classifier`](https://huggingface.co/classla/multilingual-IPTC-news-topic-classifier) | **classla_news** | Standardized news industry topic codes. |
|
| 89 |
+
| [`classla/ParlaCAP-Topic-Classifier`](https://huggingface.co/classla/ParlaCAP-Topic-Classifier) | **classla_ParlaCAP** | Legislative and parliamentary topic categories. |
|
| 90 |
+
| [`cardiffnlp/tweet-topic-latest-multi`](https://huggingface.co/cardiffnlp/tweet-topic-latest-multi) | **cardiffnlp_tweet** | Social-media style topic classification. |
|
| 91 |
+
| [`EssentialAI/eai-distill-0.5b`](https://www.google.com/search?q=https://huggingface.co/EssentialAI/eai-distill-0.5b) | **fdc_label** and other columns | Categorical mapping derived from FDC data and content analysis. |
|
| 92 |
+
|
| 93 |
+
> [!NOTE]
|
| 94 |
+
> **FDC (Free Decimal Correspondence) Mapping:** Labels were derived from predictions by [EssentialAI/eai-distill-0.5b](https://www.google.com/search?q=https://huggingface.co/EssentialAI/eai-distill-0.5b). Call numbers were truncated to the nearest multiple of 10 and mapped to official FDC categories.
|
| 95 |
+
|
| 96 |
+
## Quality Indicators
|
| 97 |
+
|
| 98 |
+
* **`pristine` column:** A boolean flag based on data generated by the EAI classifier. It indicates whether the document is structurally complete or likely missing content/context.
|
| 99 |
+
* **Configurations:** The dataset is partitioned into configs (e.g., `classla_ParlaCAP`) to allow users to load data stratified by specific model outputs.
|
| 100 |
+
|
| 101 |
+
## Limitations & Biases
|
| 102 |
+
|
| 103 |
+
Beware of the following caveats in automated labelling:
|
| 104 |
+
|
| 105 |
+
* **Class Imbalance:** Significant distribution shifts exist between categories, reflecting the natural frequency of topics in the C4 corpus.
|
| 106 |
+
* **Silver-Standard Labels:** All labels are model-generated (silver-standard). Errors or biases present in the source classifiers will be reflected in this dataset.
|
| 107 |
+
* **Label Ambiguity:** Web documents often overlap multiple domains (e.g., a personal blog discussing both geopolitics and cooking). Single-label assignment may oversimplify these documents.
|
| 108 |
+
|
| 109 |
+
## Licensing
|
| 110 |
+
|
| 111 |
+
This dataset is released under the **Open Data Commons Attribution License (ODC-BY)**. Please attribute the source models and the creators of the [allenai/c4](https://huggingface.co/datasets/allenai/c4) dataset when using this resource.
|