BorisTM commited on
Commit
4cfe117
·
verified ·
1 Parent(s): 078fc54

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -0
README.md CHANGED
@@ -24,4 +24,96 @@ configs:
24
  data_files:
25
  - split: train
26
  path: data/train-*
 
 
 
 
 
 
 
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  data_files:
25
  - split: train
26
  path: data/train-*
27
+ task_categories:
28
+ - translation
29
+ language:
30
+ - ru
31
+ - ba
32
+ size_categories:
33
+ - 1M<n<10M
34
  ---
35
+
36
+ # Russian-Bashkir Parallel Corpus
37
+
38
+ A large-scale parallel corpus for Russian-Bashkir machine translation, containing 9.7M sentence pairs filtered by semantic similarity.
39
+
40
+ ## Dataset Details
41
+
42
+ - **Languages**: Russian (`rus`) ↔ Bashkir (`bak`)
43
+ - **Size**: 9,768,889 translation pairs
44
+ - **Repository**: [`BorisTM/bak-rus-parallel`](https://huggingface.co/datasets/BorisTM/bak-rus-parallel)
45
+
46
+ ## Usage
47
+
48
+ ```python
49
+ from datasets import load_dataset
50
+
51
+ dataset = load_dataset("BorisTM/bak-rus-parallel")
52
+ ```
53
+
54
+ ## Dataset Fields
55
+
56
+ | Field | Type | Description |
57
+ |-------|------|-------------|
58
+ | `rus` | string | Russian sentence |
59
+ | `bak` | string | Bashkir sentence |
60
+ | `static_sim` | float32 | Semantic similarity score (cosine similarity, 0-1) |
61
+ | `source` | string | Data source: `"real"` or `"synth"` |
62
+ | `length_rus` | int64 | Character length of Russian sentence |
63
+ | `length_bak` | int64 | Character length of Bashkir sentence |
64
+
65
+ ## Dataset Composition
66
+
67
+ The corpus combines two sources:
68
+
69
+ ### Real Data (`source="real"`)
70
+ Authentic human-created translations from the following parallel corpora:
71
+
72
+ | Source | Description |
73
+ |--------|-------------|
74
+ | [`AigizK/bashkir-russian-parallel-corpora`](https://huggingface.co/datasets/AigizK/bashkir-russian-parallel-corpora) | Bashkir-Russian parallel corpus |
75
+ | **TIL-MT Corpus** | Turkic Interlingua parallel corpus (ba-ru) |
76
+ | **NLLB** (OPUS) | NLLB ba-ru parallel corpus from [opus.nlpl.eu](https://opus.nlpl.eu) |
77
+ | **Wikimedia** (OPUS) | Wikimedia ba-ru parallel corpus from [opus.nlpl.eu](https://opus.nlpl.eu) |
78
+
79
+ ### Synthetic Data (`source="synth"`)
80
+ Generated via back-translation using the [`facebook/nllb-200-distilled-600M`](https://huggingface.co/facebook/nllb-200-distilled-600M) model on the following raw Bashkir text corpora:
81
+
82
+ | Source | Description |
83
+ |--------|-------------|
84
+ | [`omarkamali/wikipedia-monthly`](https://huggingface.co/datasets/omarkamali/wikipedia-monthly) | Bashkir Wikipedia (2025-10-01 dump) |
85
+ | [`HuggingFaceFW/fineweb-2`](https://huggingface.co/datasets/HuggingFaceFW/fineweb-2) | FineWeb-2 bak_Cyrl split |
86
+ | [`cis-lmu/Glot500`](https://huggingface.co/datasets/cis-lmu/Glot500) | Glot500 bak_Cyrl split |
87
+ | **HPOLT 3.0** | High-quality multilingual web text (bak_Cyrl) |
88
+
89
+ ## Filtering
90
+
91
+ All sentence pairs are filtered by the following criteria:
92
+
93
+ - **Semantic similarity** > 0.25 (computed using [`BorisTM/static_rus_bak`](https://huggingface.co/BorisTM/static_rus_bak) embeddings)
94
+ - **Sentence length**: <512 for both languages
95
+
96
+ ## Statistics
97
+
98
+ | Source | Count |
99
+ |--------|-------|
100
+ | Real | ~3.0M pairs |
101
+ | Synthetic | ~6.8M pairs |
102
+ | **Total** | **9.7M pairs** |
103
+
104
+ ## License
105
+
106
+ Please refer to the original source licenses for specific data components.
107
+
108
+ ## Citation
109
+
110
+ If you use this dataset, please cite:
111
+
112
+ ```bibtex
113
+ @dataset{bak_rus_parallel,
114
+ title = {Russian-Bashkir Parallel Corpus},
115
+ author = {BorisTM},
116
+ year = {2025},
117
+ url = {https://huggingface.co/datasets/BorisTM/bak-rus-parallel}
118
+ }
119
+ ```