Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,105 @@
|
|
| 1 |
---
|
| 2 |
license: cc0-1.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc0-1.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
pretty_name: Common crawl filtered corpus
|
| 8 |
+
size_categories:
|
| 9 |
+
- 100K<n<1M
|
| 10 |
---
|
| 11 |
+
# English Cleaned Common Crawl Markdown Dataset
|
| 12 |
+
|
| 13 |
+
An English-focused dataset created from **Common Crawl**, cleaned and converted to **Markdown**.
|
| 14 |
+
The goal is to preserve web-document structure so that AI models can learn both **natural language and Markdown formatting**.
|
| 15 |
+
|
| 16 |
+
## Features
|
| 17 |
+
|
| 18 |
+
- English-focused
|
| 19 |
+
- Cleaned and filtered web content
|
| 20 |
+
- HTML converted to Markdown
|
| 21 |
+
- Exact and near-duplicate filtering
|
| 22 |
+
- GPT-2 perplexity filtering
|
| 23 |
+
- Stored as compressed Parquet shards
|
| 24 |
+
|
| 25 |
+
## Source
|
| 26 |
+
|
| 27 |
+
The current dataset is being created from:
|
| 28 |
+
|
| 29 |
+
**Common Crawl — `CC-MAIN-2026-25`**
|
| 30 |
+
|
| 31 |
+
## Processing
|
| 32 |
+
|
| 33 |
+
The pipeline roughly follows:
|
| 34 |
+
|
| 35 |
+
```text
|
| 36 |
+
Common Crawl
|
| 37 |
+
↓
|
| 38 |
+
HTML → Markdown
|
| 39 |
+
↓
|
| 40 |
+
Text cleaning
|
| 41 |
+
↓
|
| 42 |
+
English filtering
|
| 43 |
+
↓
|
| 44 |
+
Deduplication
|
| 45 |
+
↓
|
| 46 |
+
Quality filtering
|
| 47 |
+
↓
|
| 48 |
+
Parquet shards
|
| 49 |
+
```
|
| 50 |
+
## Dataset Format
|
| 51 |
+
|
| 52 |
+
Each document contains:
|
| 53 |
+
|
| 54 |
+
* text — cleaned Markdown
|
| 55 |
+
* url — original URL
|
| 56 |
+
* warc_date — Common Crawl date
|
| 57 |
+
* record_id — WARC record ID
|
| 58 |
+
* payload_digest — Common Crawl digest
|
| 59 |
+
* edu_score — FineWeb-Edu score
|
| 60 |
+
* perplexity — GPT-2 perplexity
|
| 61 |
+
|
| 62 |
+
Example:
|
| 63 |
+
|
| 64 |
+
```json
|
| 65 |
+
{
|
| 66 |
+
"text": "A strong first passage makes the page easier to scan and improves the sense that the story belongs to a broader publication. Page 541 keeps this section distinct through ordering, context and a stable archival route. The opening section frames the topic with a calmer editorial rhythm and gives the page a clear entry po...",
|
| 67 |
+
"url": "http://aece.website/context-and-a-stable-archival-route-541/",
|
| 68 |
+
"warc_date": "2026-06-05T23:15:05Z",
|
| 69 |
+
"record_id": "urn:uuid:10c5fb6b-6359-4bc0-b503-217bb07ce3cb",
|
| 70 |
+
"payload_digest": "sha1:6JK43QOH3CQ64XB3MUWUICDVWDXJUEAO",
|
| 71 |
+
"edu_score": 1.767578125,
|
| 72 |
+
"perplexity": 0.0
|
| 73 |
+
}
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
## File format
|
| 77 |
+
|
| 78 |
+
Each common crawl timeline (Eg: 2025-26) is stored as a seperate folder like `CC-MAIN-2025-26`
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
## Status
|
| 82 |
+
|
| 83 |
+
Processing in progress.
|
| 84 |
+
The dataset is uploaded shard by shard while it is being processed.
|
| 85 |
+
Because processing is still ongoing, the Hugging Face Data Viewer may not be available yet. However, individual Parquet shards can already be downloaded from the repository.
|
| 86 |
+
|
| 87 |
+
## Intended Use
|
| 88 |
+
|
| 89 |
+
This dataset is mainly intended for research and experimentation involving:
|
| 90 |
+
|
| 91 |
+
Markdown-aware language models
|
| 92 |
+
LLM pretraining
|
| 93 |
+
Markdown generation
|
| 94 |
+
Structured document generation
|
| 95 |
+
Web-text research
|
| 96 |
+
|
| 97 |
+
<blockquote>
|
| 98 |
+
This dataset is derived from publicly crawled web content. Individual documents may have different copyright or licensing conditions.
|
| 99 |
+
Please check the applicable rights before using the data.
|
| 100 |
+
The filtering pipeline is automated, so some unwanted or low-quality content may remain.
|
| 101 |
+
</blockquote>
|
| 102 |
+
|
| 103 |
+
## Feedback
|
| 104 |
+
|
| 105 |
+
Feedback on the cleaning, Markdown quality, filtering, and dataset format is welcome!
|