Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,59 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- translation
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
- cs
|
8 |
+
pretty_name: English-Czech Sentence Translations
|
9 |
+
---
|
10 |
+
# English-Czech Sentence Translations (en-cs)
|
11 |
+
|
12 |
+
[](LICENSE)
|
13 |
+
[](https://huggingface.co/datasets/VortexIntelligence/en-cs-translations)
|
14 |
+
|
15 |
+
## Dataset Description
|
16 |
+
|
17 |
+
A high-quality collection of English sentences with their Czech translations.
|
18 |
+
|
19 |
+
## Dataset Structure
|
20 |
+
|
21 |
+
Each example contains:
|
22 |
+
```json
|
23 |
+
{
|
24 |
+
"english": "The Cat Sat on the Mat",
|
25 |
+
"czech": "Kočka sedla na podložku"
|
26 |
+
}
|
27 |
+
```
|
28 |
+
|
29 |
+
## Usage
|
30 |
+
|
31 |
+
### Direct Loading
|
32 |
+
```python
|
33 |
+
from datasets import load_dataset
|
34 |
+
|
35 |
+
dataset = load_dataset("VortexIntelligence/en-cs-sentence-pairs")
|
36 |
+
```
|
37 |
+
|
38 |
+
### Split Usage
|
39 |
+
```python
|
40 |
+
train_data = dataset["train"] # All data is in the train split
|
41 |
+
```
|
42 |
+
|
43 |
+
## License
|
44 |
+
|
45 |
+
MIT License
|
46 |
+
|
47 |
+
## Citation
|
48 |
+
|
49 |
+
If you use this dataset in your research, please cite:
|
50 |
+
|
51 |
+
```bibtex
|
52 |
+
@misc{VortexIntelligence_en_cs_translations,
|
53 |
+
author = {VortexIntelligence},
|
54 |
+
title = {English-Czech Sentence Translations},
|
55 |
+
year = {2025},
|
56 |
+
publisher = {HuggingFace},
|
57 |
+
howpublished = {\url{https://huggingface.co/datasets/VortexIntelligence/en-cs-sentence-pairs}}
|
58 |
+
}
|
59 |
+
```
|