PingVortex's picture
Update README.md
f0f7033 verified
---
license: mit
task_categories:
- translation
language:
- en
- cs
pretty_name: English-Czech Sentence Translations
---
# English-Czech Sentence Translations (en-cs)
[![Dataset License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Hugging Face Dataset](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-blue)](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}}
}
```