haznitrama commited on
Commit
0d260f2
·
verified ·
1 Parent(s): 5133733

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +50 -26
README.md CHANGED
@@ -1,28 +1,52 @@
1
  ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: raw
6
- path: data/raw-*
7
- - split: filtered_heuristic
8
- path: data/filtered_heuristic-*
9
- dataset_info:
10
- features:
11
- - name: id
12
- dtype: string
13
- - name: indonesian
14
- dtype: string
15
- - name: balinese
16
- dtype: string
17
- - name: cirebonese
18
- dtype: string
19
- splits:
20
- - name: raw
21
- num_bytes: 17007467302
22
- num_examples: 2196290
23
- - name: filtered_heuristic
24
- num_bytes: 16011915965
25
- num_examples: 2078528
26
- download_size: 18472293542
27
- dataset_size: 33019383267
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: Indonesian ↔ Balinese ↔ Cirebonese Synthetic Corpus
3
+ license: other
4
+ task_categories:
5
+ - text-classification
6
+ - text-generation
7
+ language:
8
+ - id
9
+ - ban
10
+ - jav
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
+
13
+ # Indonesian–Balinese–Cirebonese Synthetic Parallel Corpus
14
+
15
+ ## Dataset Summary
16
+
17
+ This corpus is **fully synthetic** and targets two extremely low-resource languages:
18
+ - **Balinese** (ban)
19
+ - **Cirebonese** (often grouped under Javanese dialects)
20
+
21
+ Key facts:
22
+ - Seeded with 10k high-level topics generated by GPT-5.
23
+ - For each topic, GPT-5 produced 30 subtopics and GPT-OSS-120B generated 30
24
+ question–answer pairs (≈9M Q&A pairs). All answers are authored by GPT-OSS-120B.
25
+ - Answers were translated into Balinese and Cirebonese by GPT-OSS-120B while
26
+ leveraging bilingual lexicons/dictionaries through prompting and in-context
27
+ learning.
28
+ - The parallel corpus contains roughly **~1B tokens per low-resource language**
29
+ (Balinese & Cirebonese) across all splits.
30
+
31
+ ## Available Subsets
32
+
33
+ - `raw`: direct aggregation of every translated answer that passes structural
34
+ validation (IDs and all three language fields present).
35
+ - `filtered_heuristic`: subset of `raw` that passes the same heuristics used in
36
+ `scripts/clean_translations.py`, including minimum length, repetition checks,
37
+ and GlotLID verification for Balinese and Cirebonese.
38
+
39
+ ## Citation
40
+
41
+ If you use this dataset (or derivatives), please cite:
42
+
43
+ ```
44
+ Scaling Resources for Extremely Low-Resource Language
45
+ Faiz Ghifari Haznitrama, Najma Qalbi Dwiharani, Alice Oh
46
+ ```
47
+
48
+ ## Notes
49
+
50
+ - Dataset is synthetic; no human-written or human-translated text is included.
51
+ - Please verify downstream safety/quality constraints that apply to your
52
+ deployment scenario before production use.