RandomVerticalFlip¶ class torchvision.transforms.RandomVerticalFlip(p=0.5)[source]¶ 以给定概率随机垂直翻转给定图像。如果图像为 torch 张量,则预期其形状为 […, H, W],其中 … 表示任意数量的前导维度 参数: p (float) – 图像被翻转的概率。默认值为 0.5 使用 RandomVerticalFlip 的示例 转换的说明 转换的说明 forward(img)[source]¶ 参数: img (PIL Image 或 Tensor) – 要翻转的图像。 返回值: 随机翻转的图像。 返回值类型: PIL Image 或张量