Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
SkafteNicki committed Oct 14, 2024
1 parent 2e6e5e3 commit 62f240a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/torchmetrics/regression/nrmse.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ def compute(self) -> Tensor:
denom = torch.sqrt(self.var_val / self.total)
else:
denom = torch.sqrt(self.target_squared)
print(self.sum_squared_error, self.total, denom)
return _normalized_root_mean_squared_error_compute(self.sum_squared_error, self.total, denom)

def plot(
Expand Down

0 comments on commit 62f240a

Please sign in to comment.