Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- text-generation
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
pretty_name: Wikiteam
|
7 |
+
---
|
8 |
+
# Wikiteam
|
9 |
+
|
10 |
+
## Description
|
11 |
+
There are many wikis on the internet that are not managed by the Wikimedia Foundation, but do use their MediaWiki software to power their wiki. Many of these wikis have been archived by Wikiteam, a collection of volunteers that create unofficial database dumps of wikis and upload them to the Internet Archive. We download all dumps made by Wikiteam when the metadata indicates the wiki was licensed under CC BY, CC BY-SA, or released into the public domain on the Internet Archive as of September of 2024. This results in downloading approximately 330,000 wikis. When multiple dumps of the same wiki exist, we use the most recent dump. We converted wikitext to plain text using [wtf_wikipedia](https://github.com/spencermountain/wtf_wikipedia) after light adjustments in formatting to avoid errors in section ordering caused by a bug. Before parsing, we converted wikitext math into LaTeX math using our custom code. Finally, any remaining HTML tags were removed via regexes. After preprocessing, we removed documents from wikis that appeared to contain large amounts of license laundering, e.g. those that were collections of song lyrics or transcripts. Per-document license information is available in the `license` entry of the `metadata` field of each example. Code for collecting, processing, and preparing this dataset is available in the [common-pile GitHub repo](https://github.com/r-three/common-pile).
|
12 |
+
|
13 |
+
## Dataset Statistics
|
14 |
+
| Documents | UTF-8 GB |
|
15 |
+
|-----------|----------|
|
16 |
+
| 26,931,807 | 13.7 |
|
17 |
+
|
18 |
+
## License Issues
|
19 |
+
While we aim to produce datasets with completely accurate licensing information, license laundering and inaccurate metadata can cause us to erroneously assign the incorrect license to some documents (for further discussion of this limitation, please see [our paper](TODO link)). If you believe you have found an instance of incorrect licensing in this dataset, please [start a discussion](https://github.com/r-three/common-pile/discussions/new) on this repository.
|
20 |
+
|
21 |
+
## Other Versions
|
22 |
+
This is the "filtered" version of the Wikiteam dataset. If you are looking for the raw version, you can find it [here](https://huggingface.co/datasets/common-pile/wikiteam_raw).
|
23 |
+
|
24 |
+
## Citation
|
25 |
+
If you use this dataset, please cite:
|
26 |
+
```bibtex
|
27 |
+
@article{kandpal2025common,
|
28 |
+
title={{The Common Pile v0.1: An 8TB Dataset of Public Domain and Openly Licensed Text}},
|
29 |
+
author={Nikhil Kandpal and Brian Lester and Colin Raffel and Sebastian Majstorovic and Stella Biderman and Baber Abbasi and Luca Soldaini and Enrico Shippole and A. Feder Cooper and Aviya Skowron and Shayne Longpre and Lintang Sutawika and Alon Albalak and Zhenlin Xu and Guilherme Penedo and Loubna Ben and Elie Bakouch and John David and Honglu Fan and Dashiell Stander and Guangyu Song and Aaron Gokaslan and John Kirchenbauer and Tom Goldstein and Brian R and Bhavya Kailkhura and Tyler Murray},
|
30 |
+
journal={arXiv preprint},
|
31 |
+
year={2025}
|
32 |
+
}
|
33 |
+
```
|