Update LongConL.py
Browse files- LongConL.py +1 -1
LongConL.py
CHANGED
|
@@ -70,7 +70,7 @@ class LongConLDataset(datasets.GeneratorBasedBuilder):
|
|
| 70 |
#valid_task_name = task_name.replace("-", "_") # Replace hyphens with underscores
|
| 71 |
|
| 72 |
# Update URLs with the valid task name
|
| 73 |
-
urls = {key: val.format(task_name=
|
| 74 |
downloaded_files = dl_manager.download_and_extract(urls)
|
| 75 |
|
| 76 |
return [
|
|
|
|
| 70 |
#valid_task_name = task_name.replace("-", "_") # Replace hyphens with underscores
|
| 71 |
|
| 72 |
# Update URLs with the valid task name
|
| 73 |
+
urls = {key: val.format(task_name=task_name) for key, val in _URLS.items()}
|
| 74 |
downloaded_files = dl_manager.download_and_extract(urls)
|
| 75 |
|
| 76 |
return [
|