Skip to content
Snippets Groups Projects
Commit 905a8628 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Fixed a bug: Removed dataset path replacement for the moment.

parent 38830e76
No related branches found
No related tags found
No related merge requests found
......@@ -2169,7 +2169,7 @@ class NetworkInference(BaseConfig):
# replace drive path
if dpath != drive_path:
scene[k] = v.replace(str(dpath), drive_path)
scene[k] = v.replace(str(dpath), str(drive_path))
def load_dataset(self, state, implicit=True, test=False, domain='src'):
"""Load the defined dataset.
......@@ -2230,7 +2230,7 @@ class NetworkInference(BaseConfig):
ds.name = '_'.join([domain, ds_set])
# check the dataset path: replace by path on current machine
self.replace_dataset_path(ds, DRIVE_PATH)
# self.replace_dataset_path(ds, DRIVE_PATH)
return ds
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment