Add dataset card
Browse files
README.md
CHANGED
|
@@ -1,17 +1,28 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
configs:
|
| 13 |
-
- config_name: default
|
| 14 |
-
data_files:
|
| 15 |
-
- split: train
|
| 16 |
-
path: data/train-*
|
| 17 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- ori
|
| 7 |
+
- documentation
|
| 8 |
+
- raw-text
|
| 9 |
+
- jsonl
|
| 10 |
+
size_categories:
|
| 11 |
+
- n<1K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# Ori Raw Text (Single Row)
|
| 15 |
+
|
| 16 |
+
Single-row JSONL with the concatenated Ori documentation content (cleaned paragraphs).
|
| 17 |
+
|
| 18 |
+
## Schema
|
| 19 |
+
Each row:
|
| 20 |
+
{
|
| 21 |
+
"text": "<full cleaned text>"
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
## Usage
|
| 25 |
+
from datasets import load_dataset
|
| 26 |
+
|
| 27 |
+
ds = load_dataset(adrianf12/ori_raw_text)
|
| 28 |
+
print(ds[train][0][text][:500])
|