Transform#

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

Bases: object

Base class on which other transforms are based

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

Call self as a function.

classmethod from_config(config: dict, custom_objects=None) Transform[source]#
get_config() dict[source]#
forward(data: dict[str, ndarray], **kwargs) dict[str, ndarray][source]#
inverse(data: dict[str, ndarray], **kwargs) dict[str, ndarray][source]#
extra_repr() str[source]#