nirmalendu01 commited on
Commit
a28b1c6
·
verified ·
1 Parent(s): 05bc6d8

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - multilingual
4
+ license: cc-by-nc-nd-4.0
5
+ pretty_name: TED multi (4-way TSV mirror)
6
+ tags:
7
+ - parallel-corpora
8
+ - tedtalks
9
+ - multilingual
10
+ - re-host
11
+ size_categories:
12
+ - 100K<n<1M
13
+ ---
14
+
15
+ # TED multi — TSV mirror
16
+
17
+ Faithful re-host of the original [`neulab/ted_multi`](https://github.com/neulab/word-embeddings-for-nmt)
18
+ TED Talks corpus, in the same row-aligned multi-way parallel TSV format that
19
+ was distributed at `https://www.phontron.com/data/ted_talks.tar.gz`.
20
+
21
+ The HF Datasets script `neulab/ted_multi` is currently broken (`_DATA_URL`
22
+ returns an SPA), which is why this mirror exists. It does not modify the data.
23
+
24
+ ## Files
25
+
26
+ - `all_talks_train.tsv` — train split (≈258k rows).
27
+ - `all_talks_dev.tsv` — dev split (≈6k rows).
28
+ - `all_talks_test.tsv` — test split (≈7k rows).
29
+
30
+ ## Schema
31
+
32
+ Each TSV row has **60 language columns + `talk_name` + `id`** (depending on
33
+ header line — see the first line of each file). Missing translations for a row
34
+ are written literally as `__NULL__` (some legacy snapshots also use
35
+ `_ _ NULL _ _`). When you need an `N`-way parallel subset, drop any row where
36
+ any of the target language columns equals `__NULL__`.
37
+
38
+ ## Source / attribution
39
+
40
+ Qi, Y., Sachan, D., Felix, M., Padmanabhan, S., & Neubig, G. (2018).
41
+ *When and Why are Pre-trained Word Embeddings Useful for Neural Machine
42
+ Translation?* In NAACL.
43
+
44
+ Original distribution lived at <https://www.phontron.com/data/ted_talks.tar.gz>.