Datasets:
File size: 1,742 Bytes
f338df7 3a7df39 2525cb1 55398af 2525cb1 55398af 3a7df39 55398af 54218e3 55398af 3a7df39 55398af 54218e3 55398af f338df7 110e827 3a7df39 70eb051 68eccc9 70eb051 3a7df39 70eb051 3a7df39 |
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
---
license: mit
language:
- en
- cs
- fr
- de
pretty_name: multi30k
size_categories:
- 10K<n<100K
dataset_info:
features:
- name: en
dtype: string
- name: cs
dtype: string
- name: de
dtype: string
- name: fr
dtype: string
- name: image
dtype: image
splits:
- name: train
num_bytes: 9864232355
num_examples: 29000
- name: validation
num_bytes: 343487659.18
num_examples: 1014
- name: test
num_bytes: 344102587
num_examples: 1000
download_size: 10550398293
dataset_size: 10551822601.18
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
- split: test
path: data/test-*
---
# Multi30k Dataset
This dataset is a rearrangement version of the Multi30k dataset. The dataset was partially retrived from [Multi30k original github](https://github.com/multi30k/dataset).
# How to use
This dataset can be downloaded from `datasets` library. `train`, `validation`, and `test` set are included in the dataset.
```python
from datasets import load_dataset
dataset = load_dataset("romrawinjp/multi30k")
```
# Reference
If you find this dataset beneficial, please directly cite to their incredible work.
```
@InProceedings{W16-3210,
author = "Elliott, Desmond
and Frank, Stella
and Sima'an, Khalil
and Specia, Lucia",
title = "Multi30K: Multilingual English-German Image Descriptions",
booktitle = "Proceedings of the 5th Workshop on Vision and Language",
year = "2016",
publisher = "Association for Computational Linguistics",
pages = "70--74",
location = "Berlin, Germany",
doi = "10.18653/v1/W16-3210",
url = "http://www.aclweb.org/anthology/W16-3210"
}
``` |