Skip to content

Commit

Permalink
remove print statemtn
Browse files Browse the repository at this point in the history
  • Loading branch information
namsaraeva committed May 22, 2024
1 parent 8281331 commit a122fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sparcscore/ml/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def __getitem__(self, idx):
t = torch.from_numpy(cell_tensor).float() # convert to float tensor
t = torch.unsqueeze(t, 0) # add channel dimension to tensor

print(f"Selected channel {self.select_channel} from data.")
#print(f"Selected channel {self.select_channel} from data.")
else:
cell_tensor = self.handle_list[data_item[1]][data_item[2]]
t = torch.from_numpy(cell_tensor).float() # convert to float tensor
Expand Down

0 comments on commit a122fd5

Please sign in to comment.