dataeval.utils.torch.models.Decoder =================================== .. py:class:: dataeval.utils.torch.models.Decoder(channels) A simple decoder to be used in an autoencoder model. This is the decoder used by the Autoencoder model. :param channels: Number of output channels :type channels: int :param Initialize internal Module state: :param shared by both nn.Module and ScriptModule.: .. py:method:: forward(x) Perform a forward pass through the decoder. :param x: The encoded tensor. :type x: torch.Tensor :returns: The reconstructed output tensor. :rtype: torch.Tensor