Skip to content

Commit ef345e7

Browse files
committed
does the elementwise transformation actually do anything itself
1 parent a835e7d commit ef345e7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bayesflow/adapters/transforms/elementwise_transform.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
@serializable(package="bayesflow.adapters")
66
class ElementwiseTransform:
7+
8+
"""Base class on which other transforms are based"""
9+
710
def __call__(self, data: np.ndarray, inverse: bool = False, **kwargs) -> np.ndarray:
811
if inverse:
912
return self.inverse(data, **kwargs)

0 commit comments

Comments
 (0)