Skip to content

Commit

Permalink
Remove deprecated argument (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
benemer authored Apr 20, 2024
1 parent 805526c commit 82d7bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcf/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def test_step(self, batch, batch_idx):

return loss

def on_test_epoch_end(self, outputs):
def on_test_epoch_end(self):
# Remove first row since it was initialized with zero
self.chamfer_distances_tensor = self.chamfer_distances_tensor[:, 1:]
n_steps, _ = self.chamfer_distances_tensor.shape
Expand Down

0 comments on commit 82d7bf6

Please sign in to comment.