Skip to content

Commit

Permalink
better repr in sigmoidbounds
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <nstarman@users.noreply.github.com>
  • Loading branch information
nstarman committed Sep 17, 2023
1 parent 2b5517c commit b93e6ad
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 b93e6ad

Please sign in to comment.