RexTRO111 commited on
Commit
b20cc79
Β·
verified Β·
1 Parent(s): 9f32325

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
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
+ ```