sanjay73 commited on
Commit
37fa267
·
verified ·
1 Parent(s): 26b2bba

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -21
README.md CHANGED
@@ -50,35 +50,53 @@ tags:
50
 
51
  # Dataset Card for Pralekha
52
 
53
- ## Dataset Description
54
 
55
- **Pralekha** is a large-scale benchmark for evaluating document-level alignment techniques, specifically designed for cross-lingual parallel data mining. The dataset contains over **2 million documents**, covering **11 Indic languages** and **English**, with a balanced mix of aligned and unaligned document pairs. It provides a foundational resource for exploring high-quality parallel data mining and supporting long-context cross-lingual applications like neural machine translation (NMT).
56
 
57
  ---
58
 
59
- ## Dataset Usage
60
 
61
- Pralekha serves as a **benchmark dataset to evaluate document alignment approaches across various dimensions**, including embedding models, granularity levels (sentence, chunk, and document), and alignment algorithms. It enables the development of optimal strategies for mining high-quality parallel document pairs from large, noisy, web-crawled corpora, specifically for Indic languages and English.
62
 
63
- ---
64
 
65
- ## Dataset Statistics
66
 
67
- | Split | Examples | Size (bytes) |
68
- |-------------|----------|----------------|
69
- | `aligned` | 1,566,404 | 10,274,361,211 |
70
- | `unaligned` | 783,197 | 4,466,506,637 |
71
- | **Total** | 2,349,601 | 14,740,867,848 |
72
 
73
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
 
75
- ## Dataset Structure
76
 
77
- The dataset is split into `aligned` and `unaligned` subsets. Each entry follows the format:
78
- ```yaml
79
- {
80
- "n_id": "unique_parallel_id",
81
- "doc_id": "unique_document_id",
82
- "lang": "ISO-3_language_code",
83
- "text": "textual_content"
84
- }
 
50
 
51
  # Dataset Card for Pralekha
52
 
53
+ # Pralekha
54
 
55
+ PRALEKHA is a large-scale benchmark for evaluating document-level alignment techniques. It includes 2M+ documents, covering 11 Indic languages and English, with a balanced mix of aligned and unaligned pairs.
56
 
57
  ---
58
 
59
+ ## Dataset Description
60
 
61
+ PRALEKHA covers 12 languages—Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Odia, Punjabi, Tamil, Telugu, Urdu, and English. It includes a mixture of high- and medium-resource languages, covering 11 different scripts. The dataset spans two broad domains: **news bulletins** and **podcast scripts**, offering both written and spoken forms of data. All the data is human-written or human-verified, ensuring high quality.
62
 
63
+ The dataset has a **1:2 ratio of aligned to unaligned document pairs**, making it ideal for benchmarking cross-lingual document alignment techniques.
64
 
65
+ ### Data Sources
66
 
67
+ 1. **News Bulletins:** Data was custom-scraped from the [Indian Press Information Bureau (PIB)](https://pib.gov.in) website. Documents were aligned by matching bulletin IDs, which interlink bulletins across languages.
68
+ 2. **Podcast Scripts:** Data was sourced from [Mann Ki Baat](https://www.pmindia.gov.in/en/mann-ki-baat), a radio program hosted by the Indian Prime Minister. This program, originally spoken in Hindi, was manually transcribed and translated into various Indian languages.
 
 
 
69
 
70
+ ### Dataset Size Statistics
71
+
72
+ | Split | Number of Documents | Size (bytes) |
73
+ |---------------|---------------------|--------------------|
74
+ | **Aligned** | 1,566,404 | 10,274,361,211 |
75
+ | **Unaligned** | 783,197 | 4,466,506,637 |
76
+ | **Total** | 2,349,601 | 14,740,867,848 |
77
+
78
+ ### Language-wise Statistics
79
+
80
+ | Language | Aligned Documents | Unaligned Documents | Total Documents |
81
+ |----------------|-------------------|---------------------|-----------------|
82
+ | Bengali (`bn`) | 95,813 | 47,906 | 143,719 |
83
+ | English (`en`) | 298,111 | 149,055 | 447,166 |
84
+ | Gujarati (`gu`)| 67,847 | 33,923 | 101,770 |
85
+ | Hindi (`hi`) | 204,809 | 102,404 | 307,213 |
86
+ | Kannada (`kn`) | 61,998 | 30,999 | 92,997 |
87
+ | Malayalam (`ml`)| 67,760 | 33,880 | 101,640 |
88
+ | Marathi (`mr`) | 135,301 | 67,650 | 202,951 |
89
+ | Odia (`or`) | 46,167 | 23,083 | 69,250 |
90
+ | Punjabi (`pa`) | 108,459 | 54,229 | 162,688 |
91
+ | Tamil (`ta`) | 149,637 | 74,818 | 224,455 |
92
+ | Telugu (`te`) | 110,077 | 55,038 | 165,115 |
93
+ | Urdu (`ur`) | 220,425 | 110,212 | 330,637 |
94
+
95
+ ### Data Fields
96
 
97
+ Each data sample includes:
98
 
99
+ - **`n_id`:** Unique identifier for aligned document pairs.
100
+ - **`doc_id`:** Unique identifier for individual documents.
101
+ - **`lang`:** Language of the document (ISO-3 code).
102
+ - **`text`:** The textual content of the document.