Datasets:
File size: 1,242 Bytes
c3d14c5 55e1cc2 82acbf4 c3d14c5 55e1cc2 a86674b 55e1cc2 6d8ed38 55e1cc2 82acbf4 |
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 |
---
license: apache-2.0
language:
- ko
task_categories:
- question-answering
- translation
tags:
- not-for-all-audiences
size_categories:
- 10K<n<100K
---
# Dell QA English to Korean Translation Dataset
## Dataset Description
This dataset, **[dell-qa-en-to-ko-translated-by-ke-t5-base](https://huggingface.co/seongs/ke-t5-base-aihub-koen-translation-integrated-10m-en-to-ko)**, is a Korean translation of the original English Dell QA dataset.
## Source
The original dataset, [dell_qa](https://huggingface.co/datasets/c123ian/dell_qa), is designed for question-answering tasks and contains questions and answers related to Dell technologies. This translated version extends the utility to Korean language tasks.
## Dataset Structure
### Data Fields
- input
- instruction
- output
## Use Cases
This dataset can be used for training and evaluating models on Korean question-answering tasks. It can also serve as a benchmark for machine translation models and natural language understanding in Korean.
## How to Use
Here is an example of how to load this dataset using the Hugging Face `datasets` library:
```python
from datasets import load_dataset
dataset = load_dataset('your-username/dell-qa-en-to-ko-translated-by-ke-t5-base') |