Skip to content
Snippets Groups Projects
Commit 51880db9 authored by Yandi's avatar Yandi
Browse files

[Dev] Fixed bug on test loader

parent 741fb51c
No related branches found
No related tags found
1 merge request!1Master into main
......@@ -326,7 +326,7 @@ class Dataset(data.Dataset):
return in_values, out_values
else:
in_values = torch.Tensor(values[:, :-1])
in_values = torch.Tensor(values)
if self.transform is not None:
in_values = self.transform(in_values)
return in_values
......
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