Update README.md
Browse files
README.md
CHANGED
@@ -1,26 +1,60 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
dataset_info:
|
4 |
-
features:
|
5 |
-
- name: image
|
6 |
-
dtype: image
|
7 |
-
- name: document_id
|
8 |
-
dtype: string
|
9 |
-
- name: original_url
|
10 |
-
dtype: string
|
11 |
-
- name: mirror_url
|
12 |
-
dtype: string
|
13 |
-
- name: source_available
|
14 |
-
dtype: bool
|
15 |
-
splits:
|
16 |
-
- name: test
|
17 |
-
num_bytes: 151464233.0
|
18 |
-
num_examples: 170
|
19 |
-
download_size: 151418684
|
20 |
-
dataset_size: 151464233.0
|
21 |
-
configs:
|
22 |
-
- config_name: default
|
23 |
-
data_files:
|
24 |
-
- split: test
|
25 |
-
path: data/test-*
|
26 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
dataset_info:
|
4 |
+
features:
|
5 |
+
- name: image
|
6 |
+
dtype: image
|
7 |
+
- name: document_id
|
8 |
+
dtype: string
|
9 |
+
- name: original_url
|
10 |
+
dtype: string
|
11 |
+
- name: mirror_url
|
12 |
+
dtype: string
|
13 |
+
- name: source_available
|
14 |
+
dtype: bool
|
15 |
+
splits:
|
16 |
+
- name: test
|
17 |
+
num_bytes: 151464233.0
|
18 |
+
num_examples: 170
|
19 |
+
download_size: 151418684
|
20 |
+
dataset_size: 151464233.0
|
21 |
+
configs:
|
22 |
+
- config_name: default
|
23 |
+
data_files:
|
24 |
+
- split: test
|
25 |
+
path: data/test-*
|
26 |
+
---
|
27 |
+
|
28 |
+
# WMT24++ Source URLs & Images
|
29 |
+
|
30 |
+
This repository contains the source URLs and full-page document screenshots for each document in the data from
|
31 |
+
[WMT24++: Expanding the Language Coverage of WMT24 to 55 Languages & Dialects](https://arxiv.org/abs/2502.12404).
|
32 |
+
These images preserve the original document structure of the translation segments with any embedded images, and may be used for multimodal translation or language understanding.
|
33 |
+
|
34 |
+
If you are interested in the human translations and post-edit data, please see [here](https://huggingface.co/datasets/google/wmt24pp-images).
|
35 |
+
If you are interested in the MT/LLM system outputs and automatic metric scores, please see [MTME](https://github.com/google-research/mt-metrics-eval).
|
36 |
+
|
37 |
+
## Schema
|
38 |
+
|
39 |
+
Each row is a serialized JSON object for a source document with the following fields:
|
40 |
+
|
41 |
+
- `image`: The full-page screenshot of the source document. Images are fixed width (750px) and variable length, based on content. Where the source was no longer available, these are black 750x750px placeholder images.
|
42 |
+
- `document_id`: The unique ID that identifies the document the source came from.
|
43 |
+
- `original_url`: The original document url.
|
44 |
+
- `mirror_url`: Where the original source is no longer available, a url for an alternate archived mirror copy
|
45 |
+
- `source_available`: A boolean true / false value indicating whether the source is available, indicating whether a screenshot is present or a placeholder image.
|
46 |
+
|
47 |
+
## Citation
|
48 |
+
If you use any of the data released in our work, please cite the following paper:
|
49 |
+
|
50 |
+
```
|
51 |
+
@misc{deutsch2025wmt24expandinglanguagecoverage,
|
52 |
+
title={{WMT24++: Expanding the Language Coverage of WMT24 to 55 Languages & Dialects}},
|
53 |
+
author={Daniel Deutsch and Eleftheria Briakou and Isaac Caswell and Mara Finkelstein and Rebecca Galor and Juraj Juraska and Geza Kovacs and Alison Lui and Ricardo Rei and Jason Riesa and Shruti Rijhwani and Parker Riley and Elizabeth Salesky and Firas Trabelsi and Stephanie Winkler and Biao Zhang and Markus Freitag},
|
54 |
+
year={2025},
|
55 |
+
eprint={2502.12404},
|
56 |
+
archivePrefix={arXiv},
|
57 |
+
primaryClass={cs.CL},
|
58 |
+
url={https://arxiv.org/abs/2502.12404},
|
59 |
+
}
|
60 |
+
```
|