albertvillanova HF staff commited on
Commit
5b86af0
1 Parent(s): 10ced49

Fix data OPUS URL

Browse files
Files changed (1) hide show
  1. opus_euconst.py +1 -1
opus_euconst.py CHANGED
@@ -59,7 +59,7 @@ _LANGUAGES = [
59
  ]
60
  _LANGUAGE_PAIRS = list(itertools.combinations(_LANGUAGES, 2))
61
 
62
- _BASE_URL = "http://opus.nlpl.eu/download.php?f=EUconst/v1/moses"
63
  _URLS = {f"{l1}-{l2}": f"{_BASE_URL}/{l1}-{l2}.txt.zip" for l1, l2 in _LANGUAGE_PAIRS}
64
 
65
 
 
59
  ]
60
  _LANGUAGE_PAIRS = list(itertools.combinations(_LANGUAGES, 2))
61
 
62
+ _BASE_URL = "https://object.pouta.csc.fi/OPUS-EUconst/v1/moses"
63
  _URLS = {f"{l1}-{l2}": f"{_BASE_URL}/{l1}-{l2}.txt.zip" for l1, l2 in _LANGUAGE_PAIRS}
64
 
65