Datasets:
Add cleaned and precleaned Bashkir-Russian Wikipedia corpus
Browse files- README.md +107 -0
- cleaned/data.parquet +3 -0
- metadata.json +21 -0
- precleaned/data.parquet +3 -0
README.md
CHANGED
|
@@ -1,3 +1,110 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-sa-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-sa-4.0
|
| 3 |
+
language:
|
| 4 |
+
- ba
|
| 5 |
+
- ru
|
| 6 |
+
pretty_name: Bashkir-Russian Wikipedia Parallel Corpus
|
| 7 |
+
task_categories:
|
| 8 |
+
- translation
|
| 9 |
+
configs:
|
| 10 |
+
- config_name: cleaned
|
| 11 |
+
data_files:
|
| 12 |
+
- split: train
|
| 13 |
+
path: cleaned/data.parquet
|
| 14 |
+
- config_name: precleaned
|
| 15 |
+
data_files:
|
| 16 |
+
- split: train
|
| 17 |
+
path: precleaned/data.parquet
|
| 18 |
+
tags:
|
| 19 |
+
- bashkir
|
| 20 |
+
- russian
|
| 21 |
+
- wikipedia
|
| 22 |
+
- cyrillic
|
| 23 |
+
- low-resource
|
| 24 |
+
- parallel-corpus
|
| 25 |
+
- sentence-level
|
| 26 |
---
|
| 27 |
+
|
| 28 |
+
# Bashkir-Russian Wikipedia Parallel Corpus
|
| 29 |
+
|
| 30 |
+
Sentence-level Bashkir-Russian parallel data extracted from the Bashkir and
|
| 31 |
+
Russian Wikipedia dumps dated `2026-08-01`.
|
| 32 |
+
|
| 33 |
+
This repository provides two configurations. The default `cleaned`
|
| 34 |
+
configuration is recommended for machine translation training. The
|
| 35 |
+
`precleaned` configuration is an earlier, less filtered extraction provided
|
| 36 |
+
for alternative preprocessing and research.
|
| 37 |
+
|
| 38 |
+
## Configurations
|
| 39 |
+
|
| 40 |
+
### cleaned
|
| 41 |
+
|
| 42 |
+
- 72,007 sentence pairs
|
| 43 |
+
- 34,566 linked article pairs
|
| 44 |
+
- URLs, MediaWiki markup, card fragments and malformed punctuation removed
|
| 45 |
+
- duplicate and identical pairs removed
|
| 46 |
+
- sentence indices retained
|
| 47 |
+
|
| 48 |
+
Fields:
|
| 49 |
+
|
| 50 |
+
- `ba_title`: Bashkir Wikipedia article title
|
| 51 |
+
- `ru_title`: Russian Wikipedia article title
|
| 52 |
+
- `section`: `lead` or `facts`
|
| 53 |
+
- `ba`: Bashkir sentence
|
| 54 |
+
- `ru`: Russian sentence
|
| 55 |
+
- `ba_sentence_index`: sentence index in the Bashkir article
|
| 56 |
+
- `ru_sentence_index`: sentence index in the Russian article
|
| 57 |
+
|
| 58 |
+
### precleaned
|
| 59 |
+
|
| 60 |
+
- 91,949 sentence pairs
|
| 61 |
+
- earlier extraction with lighter filtering
|
| 62 |
+
- contains older Wiki markup, links and alignment noise
|
| 63 |
+
|
| 64 |
+
Fields:
|
| 65 |
+
|
| 66 |
+
- `ba_title`
|
| 67 |
+
- `ru_title`
|
| 68 |
+
- `section`
|
| 69 |
+
- `ba`
|
| 70 |
+
- `ru`
|
| 71 |
+
|
| 72 |
+
## Source and Processing
|
| 73 |
+
|
| 74 |
+
The data was extracted from corresponding Bashkir and Russian Wikipedia
|
| 75 |
+
articles using the `bawiki-20260801` and `ruwiki-20260801` dumps.
|
| 76 |
+
|
| 77 |
+
The cleaned configuration uses article-local sentence indices, numeric
|
| 78 |
+
anchors for factual pairs, length-ratio checks, language checks, duplicate
|
| 79 |
+
removal and service-fragment filtering. The alignment is automatic and has
|
| 80 |
+
not been fully verified by human annotators. Some imperfectly equivalent
|
| 81 |
+
pairs may remain.
|
| 82 |
+
|
| 83 |
+
## License
|
| 84 |
+
|
| 85 |
+
The source text is derived from Wikipedia and is distributed under the
|
| 86 |
+
[Creative Commons Attribution-ShareAlike 4.0 International license](https://creativecommons.org/licenses/by-sa/4.0/).
|
| 87 |
+
|
| 88 |
+
Please preserve Wikipedia attribution when redistributing or publishing
|
| 89 |
+
derivative datasets.
|
| 90 |
+
|
| 91 |
+
## Loading
|
| 92 |
+
|
| 93 |
+
```python
|
| 94 |
+
from datasets import load_dataset
|
| 95 |
+
|
| 96 |
+
cleaned = load_dataset("failed09/bashkir-wikipedia-parallel", "cleaned")
|
| 97 |
+
precleaned = load_dataset("failed09/bashkir-wikipedia-parallel", "precleaned")
|
| 98 |
+
```
|
| 99 |
+
|
| 100 |
+
## Citation
|
| 101 |
+
|
| 102 |
+
```bibtex
|
| 103 |
+
@dataset{failed09_bashkir_russian_wikipedia_parallel_2026,
|
| 104 |
+
title = {Bashkir-Russian Wikipedia Parallel Corpus},
|
| 105 |
+
author = {failed09},
|
| 106 |
+
year = {2026},
|
| 107 |
+
publisher = {Hugging Face},
|
| 108 |
+
url = {https://huggingface.co/datasets/failed09/bashkir-wikipedia-parallel}
|
| 109 |
+
}
|
| 110 |
+
```
|
cleaned/data.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c336138bc85d1c88066de1707de7e63331693c584ffdee0e980785bca855753
|
| 3 |
+
size 16422979
|
metadata.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "bashkir-russian-wikipedia-parallel",
|
| 3 |
+
"dump_date": "2026-08-01",
|
| 4 |
+
"license": "CC BY-SA 4.0",
|
| 5 |
+
"license_url": "https://creativecommons.org/licenses/by-sa/4.0/",
|
| 6 |
+
"configs": {
|
| 7 |
+
"cleaned": {
|
| 8 |
+
"file": "cleaned/data.parquet",
|
| 9 |
+
"version": "v6",
|
| 10 |
+
"rows": 72007,
|
| 11 |
+
"linked_article_pairs": 34566,
|
| 12 |
+
"columns": ["ba_title", "ru_title", "section", "ba", "ru", "ba_sentence_index", "ru_sentence_index"]
|
| 13 |
+
},
|
| 14 |
+
"precleaned": {
|
| 15 |
+
"file": "precleaned/data.parquet",
|
| 16 |
+
"version": "v1",
|
| 17 |
+
"rows": 91949,
|
| 18 |
+
"columns": ["ba_title", "ru_title", "section", "ba", "ru"]
|
| 19 |
+
}
|
| 20 |
+
}
|
| 21 |
+
}
|
precleaned/data.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61e960e1a122d45a5ae92b6d8116590cfb0b800bb54a815b2e3721406b2fa7a6
|
| 3 |
+
size 20028563
|