You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dataset.pyinit() file paths inside ZIP archives are created with the system specific path separator. On windows this will be \. However, this doesn't seem to work and the files are not found.
As a workaround, the separator should be replaced with /.
E.g. at least 3 lines should be adjusted
In
dataset.py
init()
file paths inside ZIP archives are created with the system specific path separator. On windows this will be\
. However, this doesn't seem to work and the files are not found.As a workaround, the separator should be replaced with
/
.E.g. at least 3 lines should be adjusted
self.imgs.append(str(img_path).replace("\\", "/"))
https://github.com/tue-mps/eomt/blob/87e6afc4cb6413fe555197c154ed33c7f2afdb58/datasets/dataset.py#L165target_instance_filename = target_instance_filename.replace("\\", "/")
https://github.com/tue-mps/eomt/blob/87e6afc4cb6413fe555197c154ed33c7f2afdb58/datasets/dataset.py#L124target_filename = target_filename.replace("\\", "/")
https://github.com/tue-mps/eomt/blob/87e6afc4cb6413fe555197c154ed33c7f2afdb58/datasets/dataset.py#L145The text was updated successfully, but these errors were encountered: