freococo commited on
Commit
3cc3de1
·
verified ·
1 Parent(s): e8e785f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -38
README.md CHANGED
@@ -1,35 +1,37 @@
1
- ---
2
- language:
3
- - my
4
- - ar
5
- - en
6
- license: cc-by-nc-4.0
7
- pretty_name: Quran Burmese Word Alignment
8
- size_categories:
9
- - 10K<n<100K
10
- source_datasets:
11
- - original
12
- annotations_creators:
13
- - expert-generated
14
- task_categories:
15
- - translation
16
- - text-generation
17
- tags:
18
- - myanmar
19
- - burmese
20
- - arabic
21
- - english
22
- - quranwords
23
- - burmesewords
24
- - englishwords
25
- ---
 
 
26
  # Quran Burmese Word Alignment Dataset
27
 
28
  **Creator:** freococo
29
  **License:** CC BY-NC 4.0
30
  **Language:** Burmese (Myanmar), Arabic
31
  **Format:** JSONL (one word per line)
32
- **Current Version:** v1 (Surah 1–2)
33
 
34
  ---
35
 
@@ -50,17 +52,38 @@ The dataset is designed for:
50
  ## 📦 Dataset Contents
51
 
52
  | File | Description |
53
- |----|----|
54
- | `q_v1.jsonl` | Word-level dataset covering **Surah 1 and Surah 2** |
55
 
56
- **Statistics (v1):**
57
- - Surahs: 1–2
58
- - Total verses: 293
59
- - Total words: **10,874**
60
  - Format: JSONL (1 word = 1 line)
61
 
62
  ---
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  ## 🧱 Data Schema (Canonical)
65
 
66
  Each line is a single JSON object with the following fields:
@@ -131,15 +154,12 @@ These rules ensure consistency, auditability, and model safety.
131
 
132
  ## 🔄 Versioning Plan
133
 
134
- The dataset is released incrementally to ensure stability and traceability.
135
-
136
  | Version | Coverage |
137
  |--------|----------|
138
- | `v1` | Surah 1–2 (released) |
139
- | `v2` | Additional surahs (planned) |
140
- | `v3` | Full Quran (planned) |
141
 
142
- All future releases will **maintain backward compatibility** with earlier versions.
143
 
144
  ---
145
 
 
1
+ ---
2
+ language:
3
+ - my
4
+ - ar
5
+ - en
6
+ license: cc-by-nc-4.0
7
+ pretty_name: Quran Burmese Word Alignment
8
+ size_categories:
9
+ - 100K<n<1M
10
+ source_datasets:
11
+ - original
12
+ annotations_creators:
13
+ - expert-generated
14
+ task_categories:
15
+ - translation
16
+ - text-generation
17
+ tags:
18
+ - quran
19
+ - quranic-arabic
20
+ - myanmar
21
+ - burmese
22
+ - arabic
23
+ - english
24
+ - word-alignment
25
+ - low-resource-language
26
+ - islamic-studies
27
+ ---
28
  # Quran Burmese Word Alignment Dataset
29
 
30
  **Creator:** freococo
31
  **License:** CC BY-NC 4.0
32
  **Language:** Burmese (Myanmar), Arabic
33
  **Format:** JSONL (one word per line)
34
+ **Current Version:** v10 (Surah 1–114)
35
 
36
  ---
37
 
 
52
  ## 📦 Dataset Contents
53
 
54
  | File | Description |
55
+ |------|-------------|
56
+ | `q_v10.jsonl` | Complete Quran (Surah 1–114), word-by-word Burmese–Arabic alignment |
57
 
58
+ **Statistics (v10):**
59
+ - Surahs: 114
60
+ - Total verses: **6,236**
61
+ - Total words: **141,774**
62
  - Format: JSONL (1 word = 1 line)
63
 
64
  ---
65
 
66
+ ## 🧪 Usage Example
67
+
68
+ ```python
69
+ from datasets import load_dataset
70
+
71
+ # Load the dataset
72
+ dataset = load_dataset(
73
+ "freococo/quran-burmese-word-alignment",
74
+ split="train"
75
+ )
76
+
77
+ # Inspect dataset
78
+ print(dataset)
79
+ print("Columns:", dataset.column_names)
80
+
81
+ # Inspect a single word entry
82
+ example = dataset[0]
83
+ for k, v in example.items():
84
+ print(f"{k}: {v}")
85
+ ```
86
+
87
  ## 🧱 Data Schema (Canonical)
88
 
89
  Each line is a single JSON object with the following fields:
 
154
 
155
  ## 🔄 Versioning Plan
156
 
 
 
157
  | Version | Coverage |
158
  |--------|----------|
159
+ | `v1` | Surah 1–2 |
160
+ | `v10` | **Complete Quran (Surah 1–114)** |
 
161
 
162
+ All future releases will maintain backward compatibility.
163
 
164
  ---
165