We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67600c0 commit c5a3267Copy full SHA for c5a3267
bayesflow/adapters/transforms/transform.py
@@ -4,6 +4,9 @@
4
5
@serializable(package="bayesflow.adapters")
6
class Transform:
7
+ """
8
+ Base class on which other transforms are based
9
10
def __call__(self, data: dict[str, np.ndarray], *, inverse: bool = False, **kwargs) -> dict[str, np.ndarray]:
11
if inverse:
12
return self.inverse(data, **kwargs)
0 commit comments