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