Skip to content

Commit 664f00a

Browse files
committed
[no ci] remove unnecessary serializable decorator on rmse
1 parent 1d4f646 commit 664f00a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

bayesflow/metrics/functional/root_mean_squared_error.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
from keras import ops
33

44
from bayesflow.types import Tensor
5-
from bayesflow.utils.serialization import serializable
65

76

8-
@serializable("bayesflow.metrics")
97
def root_mean_squared_error(x1: Tensor, x2: Tensor, normalize: bool = False, **kwargs) -> Tensor:
108
"""Computes the (normalized) root mean squared error between samples x1 and x2.
119

0 commit comments

Comments
 (0)