DataModule.unnorm_inv_transf_x
- DataModule.unnorm_inv_transf_x(x: torch.Tensor | ndarray) torch.Tensor | ndarray [source]
Unnormalize and do the inverse transformation of the data. Takes care of the case where y is a numpy array or a torch tensor.
- Parameters:
x (Union[torch.Tensor, np.ndarray]) – A numpy array or a torch tensor to be unnormalized.
- Returns:
Union[torch.Tensor, np.ndarray] – The unnormalized data. The output has the same type as the input.