azizdh00 commited on
Commit
48c0f37
·
verified ·
1 Parent(s): ce6f801

Upload README.md with huggingface_hub

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