Datasets:
File size: 630 Bytes
5d3b14a 43eb93a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
---
language:
- en
- he
pretty_name: "English-Hebrew Translation Dataset"
tags:
- translation
- en-he
- bilingual
license: "cc-by-4.0"
task_categories:
- text2text-generation
---
# English-Hebrew Translation Dataset
This dataset contains parallel text in English (`en`) and Hebrew (`he`), useful for machine translation tasks.
## Dataset Information
- **Languages**: English (`en`) and Hebrew (`he`)
- **Number of Examples**: 25,228,938
- **Split**: Single split (`train`)
## Format
Each entry has the following structure:
```json
{
"id": "0",
"translation": {
"en": "Hello",
"he": "שלום"
}
}
|