Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- text-retrieval
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
tags:
|
7 |
+
- wikipedia
|
8 |
+
size_categories:
|
9 |
+
- 100K<n<1M
|
10 |
+
---
|
11 |
+
|
12 |
+
## Dataset Description
|
13 |
+
|
14 |
+
This dataset contains 348,854 Wikipedia articles
|
15 |
+
|
16 |
+
## Dataset Structure
|
17 |
+
|
18 |
+
The dataset follows a simple structure with two fields:
|
19 |
+
|
20 |
+
- `text`: The content of the Wikipedia article
|
21 |
+
- `source`: The source identifier (e.g., "Wikipedia:Albedo")
|
22 |
+
|
23 |
+
## Format
|
24 |
+
|
25 |
+
The dataset is provided in JSONL format, where each line contains a JSON object with the above fields.
|
26 |
+
|
27 |
+
Example:
|
28 |
+
```json
|
29 |
+
{
|
30 |
+
"text": "Albedo is the fraction of sunlight that is reflected by a surface...",
|
31 |
+
"source": "Wikipedia:Albedo"
|
32 |
+
}
|
33 |
+
```
|