Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,68 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-sa-4.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-sa-4.0
|
| 3 |
---
|
| 4 |
+
```markdown
|
| 5 |
+
# RexTRO111/articles
|
| 6 |
+
|
| 7 |
+
Welcome to the **RexTRO111/articles** dataset. This repository contains a curated, multi-source text dataset specifically preprocessed and structured for large language model (LLM) pretraining, fine-tuning, and natural language processing pipelines. π
|
| 8 |
+
|
| 9 |
+
The dataset features a clean, flat architecture optimized for high-performance streaming and distributed data loading. π
|
| 10 |
+
|
| 11 |
+
## π Dataset Structure
|
| 12 |
+
|
| 13 |
+
The dataset is saved in the Apache Parquet format. Each shard contains a flat schema with the following fields:
|
| 14 |
+
|
| 15 |
+
* `text` (string): The raw extracted text content, split exactly into **one line per paragraph** to preserve natural semantic context and chunking boundaries.
|
| 16 |
+
* `url` (string): The exact source URL from which the text was extracted to maintain strict provenance and citation history.
|
| 17 |
+
|
| 18 |
+
### Repository Layout
|
| 19 |
+
```bash
|
| 20 |
+
.
|
| 21 |
+
βββ README.md
|
| 22 |
+
βββ articles-0000.parquet
|
| 23 |
+
βββ ...
|
| 24 |
+
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## π οΈ Data Sources & Curation
|
| 28 |
+
|
| 29 |
+
This dataset aggregates high-quality, text-dense knowledge bases from across the web:
|
| 30 |
+
|
| 31 |
+
1. **Wikipedia**: Extracted main body content covering diverse domains, providing broad foundational knowledge. π
|
| 32 |
+
2. **arXiv**: Academic abstracts and structured paper content spanning machine learning, computer science, and related fields. π¬
|
| 33 |
+
3. **Other Text Repositories**: Integrated text sequences designed to improve the general knowledge and reasoning capabilities of language models. π§
|
| 34 |
+
|
| 35 |
+
## π Quick Start / How to Use
|
| 36 |
+
|
| 37 |
+
You can easily stream or load this dataset using `pandas` or the Hugging Face `datasets` library.
|
| 38 |
+
|
| 39 |
+
### Using Pandas πΌ
|
| 40 |
+
|
| 41 |
+
```python
|
| 42 |
+
import pandas as pd
|
| 43 |
+
|
| 44 |
+
# Load a specific shard
|
| 45 |
+
df = pd.read_parquet("articles-0000.parquet")
|
| 46 |
+
print(df.head())
|
| 47 |
+
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
### Using Hugging Face Datasets π€
|
| 51 |
+
|
| 52 |
+
```python
|
| 53 |
+
from datasets import load_dataset
|
| 54 |
+
|
| 55 |
+
dataset = load_dataset("RexTRO111/articles")
|
| 56 |
+
print(dataset["train"][0])
|
| 57 |
+
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
## βοΈ Licensing & Terms
|
| 61 |
+
|
| 62 |
+
This dataset is licensed under the **Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)** license.
|
| 63 |
+
|
| 64 |
+
* **Attribution**: You must give appropriate credit, provide a link to the license, and indicate if changes were made.
|
| 65 |
+
* **ShareAlike**: If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
|
| 66 |
+
* *Disclaimer*: Content included in this dataset is gathered from public web sources. Users are responsible for ensuring downstream compliance regarding fair use and source-specific terms (such as individual author licenses on arXiv).
|
| 67 |
+
|
| 68 |
+
```
|