DataModule.unnormalize_y
- DataModule.unnormalize_y(y: torch.Tensor | ndarray) torch.Tensor | ndarray [source]
Unnormalize only the output data. Takes care of the case where y is a numpy array or a torch tensor.
- Parameters:
y (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.