Datasets:
Commit
•
8f51826
1
Parent(s):
0e03e1f
Convert language pairs from generator to list
Browse files- europarl_bilingual.py +1 -1
europarl_bilingual.py
CHANGED
@@ -96,7 +96,7 @@ LANGUAGES = [
|
|
96 |
"sv",
|
97 |
]
|
98 |
|
99 |
-
LANGUAGE_PAIRS = itertools.combinations(LANGUAGES, 2)
|
100 |
|
101 |
_VERSION = "8.0.0"
|
102 |
_BASE_URL_DATASET = "https://object.pouta.csc.fi/OPUS-Europarl/v8/raw/{}.zip"
|
|
|
96 |
"sv",
|
97 |
]
|
98 |
|
99 |
+
LANGUAGE_PAIRS = list(itertools.combinations(LANGUAGES, 2))
|
100 |
|
101 |
_VERSION = "8.0.0"
|
102 |
_BASE_URL_DATASET = "https://object.pouta.csc.fi/OPUS-Europarl/v8/raw/{}.zip"
|