Skip to content
Snippets Groups Projects
Commit e87058e0 authored by Timo Tjaden Stomberg's avatar Timo Tjaden Stomberg
Browse files

images dataset returns str(file)

parent 2d000d58
Branches
Tags
No related merge requests found
...@@ -187,7 +187,7 @@ class Dataset(data.basic.Dataset): ...@@ -187,7 +187,7 @@ class Dataset(data.basic.Dataset):
y = self.labels[index] if self.labels is not None else None y = self.labels[index] if self.labels is not None else None
return {'x': x, 'y': y, 'file': file} return {'x': x, 'y': y, 'file': str(file)}
def transform(self, x, y): def transform(self, x, y):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment