Skip to content

Commit

Permalink
better repr in sigmoidbounds (#144)
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <nstarman@users.noreply.github.com>
  • Loading branch information
nstarman authored Sep 21, 2023
1 parent 3a6c636 commit 8da8b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stream_ml/pytorch/params/bounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def scaled_sigmoid(x: Array, /, lower: Array, upper: Array) -> Array:
return xp.sigmoid(x) * (upper - lower) + lower


@dataclass(frozen=True)
@dataclass(frozen=True, repr=False)
class SigmoidBounds(ParameterBounds[Array]):
"""Base class for prior bounds."""

Expand Down

0 comments on commit 8da8b66

Please sign in to comment.