Skip to content

Commit

Permalink
remove random print
Browse files Browse the repository at this point in the history
  • Loading branch information
tallyhawley committed Mar 8, 2024
1 parent 02bf39d commit 0bead62
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pulse2percept/models/cortex/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,6 @@ def _predict_spatial(self, earray, stim):
if self.vfmap.ndim == 2:
e_locs = torch.tensor([(x,y) for x,y in zip(x_el, y_el)])
amps = torch.tensor(stim.data)
print(amps)
return self.torchmodel(amps=amps, e_locs=e_locs).T.numpy()
else:
raise ValueError("Invalid dimensionality of visual field map")
Expand Down

0 comments on commit 0bead62

Please sign in to comment.