|
--- |
|
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}} |
|
} |
|
``` |