Skip to content

Commit

Permalink
Correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pchlap committed Dec 6, 2023
1 parent 604985a commit c8ec57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platipy/imaging/cnn/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def __getitem__(self, index):

if context_map is not None:
context_map = torch.FloatTensor(context_map)
context_map = context_map.unqsqueeze(0)
context_map = context_map.unsqueeze(0)

label = torch.FloatTensor(
np.concatenate([np.expand_dims(l, 0) for l in labels], 0)
Expand Down

0 comments on commit c8ec57e

Please sign in to comment.