ElementwiseTransform#

class bayesflow.adapters.transforms.ElementwiseTransform[source]#

Bases: object

Base class on which other transforms are based

__call__(data: ndarray, inverse: bool = False, **kwargs) ndarray[source]#

Call self as a function.

classmethod from_config(config: dict, custom_objects=None)[source]#
get_config() dict[source]#
forward(data: ndarray, **kwargs) ndarray[source]#
inverse(data: ndarray, **kwargs) ndarray[source]#
log_det_jac(data: ndarray, inverse: bool = False, **kwargs) ndarray | None[source]#