Datasets:
File size: 1,282 Bytes
f0f7033 |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
---
license: mit
task_categories:
- translation
language:
- en
- cs
pretty_name: English-Czech Sentence Translations
---
# English-Czech Sentence Translations (en-cs)
[](LICENSE)
[](https://huggingface.co/datasets/VortexIntelligence/en-cs-translations)
## Dataset Description
A high-quality collection of English sentences with their Czech translations.
## Dataset Structure
Each example contains:
```json
{
"english": "The Cat Sat on the Mat",
"czech": "Kočka sedla na podložku"
}
```
## Usage
### Direct Loading
```python
from datasets import load_dataset
dataset = load_dataset("VortexIntelligence/en-cs-sentence-pairs")
```
### Split Usage
```python
train_data = dataset["train"] # All data is in the train split
```
## License
MIT License
## Citation
If you use this dataset in your research, please cite:
```bibtex
@misc{VortexIntelligence_en_cs_translations,
author = {VortexIntelligence},
title = {English-Czech Sentence Translations},
year = {2025},
publisher = {HuggingFace},
howpublished = {\url{https://huggingface.co/datasets/VortexIntelligence/en-cs-sentence-pairs}}
}
``` |