fix data paths
Browse files- NASA_OSDR.py +2 -2
NASA_OSDR.py
CHANGED
|
@@ -512,7 +512,7 @@ class NasaOsdr(datasets.GeneratorBasedBuilder):
|
|
| 512 |
downloaded_files = dl_manager.download_and_extract(
|
| 513 |
{
|
| 514 |
"train": {
|
| 515 |
-
"file": os.path.join(self.config.
|
| 516 |
},
|
| 517 |
}
|
| 518 |
)
|
|
@@ -529,7 +529,7 @@ class NasaOsdr(datasets.GeneratorBasedBuilder):
|
|
| 529 |
downloaded_files = dl_manager.download_and_extract(
|
| 530 |
{
|
| 531 |
"train": {
|
| 532 |
-
"file": os.path.join(self.config.
|
| 533 |
},
|
| 534 |
}
|
| 535 |
)
|
|
|
|
| 512 |
downloaded_files = dl_manager.download_and_extract(
|
| 513 |
{
|
| 514 |
"train": {
|
| 515 |
+
"file": os.path.join(self.config.data_url, 'train/experiments.csv'),
|
| 516 |
},
|
| 517 |
}
|
| 518 |
)
|
|
|
|
| 529 |
downloaded_files = dl_manager.download_and_extract(
|
| 530 |
{
|
| 531 |
"train": {
|
| 532 |
+
"file": os.path.join(self.config.data_url, 'train/samples.csv'),
|
| 533 |
},
|
| 534 |
}
|
| 535 |
)
|