have the same data type. ValueError: If ``preds`` and ``target`` don't have ``BxCxHxW shape``. ValueError: If the length of ``kernel_size`` or ``sigma`` is not ``2``. ValueError: If one of the elements of ``kernel_size`` is not an ``odd positive number``. ValueError: If one of the elements of ``sigma`` is not a ``positive number``. Example: >>> from torchmetrics.functional.image import structural_similarity_index_measure >>> preds = torch.rand([3, 3, 256, 256]) >>> target = preds * 0.75 >>> structural_similarity_index_measure(preds, target) tensor(0.9219) )