Commit 031677b6 authored by Samuel Weinbach's avatar Samuel Weinbach
Browse files

fix file download for existing files

parent 49dc058d
......@@ -29,7 +29,7 @@ class MultilingualLAMBADA(lambada.LAMBADA):
f = f"data/lambada/lambada_test_{self.LANG}.jsonl"
url = f"http://eaidata.bmk.sh/data/lambada_test_{self.LANG}.jsonl"
try:
if not os.path.exists():
if not os.path.exists(f):
download_file(
url,
f,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment