Skip to content

Commit

Permalink
Don't pass in kwargs to RMSEMetric for loss.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinxzhao committed Oct 20, 2023
1 parent 95b4de1 commit 248f8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ludwig/modules/metric_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class RMSEMetric(MeanSquaredError, LudwigMetric):
"""Root mean squared error metric."""

def __init__(self, **kwargs):
super().__init__(squared=False, **kwargs)
super().__init__(squared=False)


@register_metric(PRECISION, [BINARY], MAXIMIZE, PROBABILITIES)
Expand Down

0 comments on commit 248f8d8

Please sign in to comment.