Append AeroPath to DATA_DIR
Browse files- AeroPath.py +3 -0
AeroPath.py
CHANGED
|
@@ -133,6 +133,9 @@ class AeroPath(datasets.GeneratorBasedBuilder):
|
|
| 133 |
urls = _URLS[self.config.name]
|
| 134 |
self.DATA_DIR = dl_manager.download_and_extract(urls)
|
| 135 |
|
|
|
|
|
|
|
|
|
|
| 136 |
print("data is downloaded to:", self.DATA_DIR)
|
| 137 |
|
| 138 |
return [
|
|
|
|
| 133 |
urls = _URLS[self.config.name]
|
| 134 |
self.DATA_DIR = dl_manager.download_and_extract(urls)
|
| 135 |
|
| 136 |
+
# append AeroPath
|
| 137 |
+
self.DATA_DIR = os.path.join(self.DATA_DIR, "AeroPath")
|
| 138 |
+
|
| 139 |
print("data is downloaded to:", self.DATA_DIR)
|
| 140 |
|
| 141 |
return [
|