raj2708 commited on
Commit
0e9fde2
·
verified ·
1 Parent(s): e6f1915

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ language:
4
+ - am
5
+ tags:
6
+ - wikipedia
7
+ - am
8
+ - text
9
+ - pretraining
10
+ size_categories:
11
+ - 10K<n<100K
12
+ ---
13
+
14
+ # Wikipedia (am) — Preprocessed
15
+
16
+ Clean preprocessed Wikipedia dump for LLM pretraining.
17
+
18
+ | Field | Value |
19
+ |-------|-------|
20
+ | Language | am |
21
+ | Articles | 14,430 |
22
+ | Size | 0.03 GB |
23
+ | License | CC-BY-SA 4.0 |
24
+ | Source | am.wikipedia.org |
25
+
26
+ ## Format
27
+
28
+ ```json
29
+ {
30
+ "id": "uuid-v4",
31
+ "source": "wikipedia",
32
+ "type": "text",
33
+ "language": "am",
34
+ "text": "Article plain text...",
35
+ "metadata": {
36
+ "url": "https://am.wikipedia.org/wiki/Title",
37
+ "title": "Article Title",
38
+ "license": "CC-BY-SA-4.0",
39
+ "scraped_at": "2026-01-01T00:00:00+00:00",
40
+ "quality_score": 0.95,
41
+ "token_count": 512,
42
+ "word_count": 384
43
+ }
44
+ }
45
+ ```
46
+
47
+ ## Usage
48
+
49
+ ```python
50
+ from datasets import load_dataset
51
+
52
+ ds = load_dataset("raj2708/wikipedia-am", split="train", streaming=True)
53
+ for row in ds:
54
+ print(row["metadata"]["title"])
55
+ print(row["text"][:300])
56
+ break
57
+ ```