Skip to content

Commit

Permalink
removed annoying print
Browse files Browse the repository at this point in the history
  • Loading branch information
realansgar committed Nov 2, 2020
1 parent 33348a1 commit 54ee81a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion CNN.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ def forward(self, x):
x_imus = torch.split(x, self.IMUS, dim=3)
else:
x_imus = torch.split(x, (self.NUM_SENSOR_CHANNELS // self.IMUS), dim=3)
print(list(map(lambda x: x.shape, x_imus)))
x = list(map(lambda imu_branch, x_imu: imu_branch(x_imu), self.imu_branches, x_imus))
x = torch.cat(x, dim=1)
x = self.combining_layers(x)
Expand Down

0 comments on commit 54ee81a

Please sign in to comment.