Upload nle_hf_dataset.py
Browse files- nle_hf_dataset.py +2 -1
nle_hf_dataset.py
CHANGED
@@ -110,7 +110,7 @@ class NleHfDataset(datasets.GeneratorBasedBuilder):
|
|
110 |
urls = _URLS[self.config.name]
|
111 |
else:
|
112 |
urls = self.config.data_files["train"]
|
113 |
-
print(self.config.data_files["train"])
|
114 |
|
115 |
filepaths = [dl_manager.download(url) for url in urls]
|
116 |
return [
|
@@ -119,6 +119,7 @@ class NleHfDataset(datasets.GeneratorBasedBuilder):
|
|
119 |
]
|
120 |
|
121 |
def _generate_examples(self, filepaths):
|
|
|
122 |
for i, filepath in enumerate(filepaths):
|
123 |
if self.config.name == "metadata":
|
124 |
with open(filepath, "r") as f:
|
|
|
110 |
urls = _URLS[self.config.name]
|
111 |
else:
|
112 |
urls = self.config.data_files["train"]
|
113 |
+
# print(self.config.data_files["train"])
|
114 |
|
115 |
filepaths = [dl_manager.download(url) for url in urls]
|
116 |
return [
|
|
|
119 |
]
|
120 |
|
121 |
def _generate_examples(self, filepaths):
|
122 |
+
# print(filepaths)
|
123 |
for i, filepath in enumerate(filepaths):
|
124 |
if self.config.name == "metadata":
|
125 |
with open(filepath, "r") as f:
|