ToDtype¶
- class torchvision.transforms.v2.ToDtype(dtype: Union[dtype, Dict[Type, Optional[dtype]]])[source]¶
[BETA] Converts the input to a specific dtype - this does not scale values.
Warning
The ToDtype transform is in Beta stage, and while we do not expect major breaking changes, some APIs may still change according to user feedback. Please submit any feedback you may have in this issue: https://github.com/pytorch/vision/issues/6753, and you can also check out https://github.com/pytorch/vision/issues/7319 to learn more about the APIs that we suspect might involve future changes.
- Parameters:
dtype (
torch.dtype
or dict ofDatapoint
->torch.dtype
) – The dtype to convert to. A dict can be passed to specify per-datapoint conversions, e.g.dtype={datapoints.Image: torch.float32, datapoints.Video: torch.float64}
.