335 Star 1.5K Fork 858

MindSpore / docs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
random_flip_left_right.md 1.72 KB
一键复制 编辑 原始数据 按行查看 历史
俞涵 提交于 2023-01-29 16:21 . add mindquantum and modify url

比较与tf.image.random_flip_left_right的功能差异

tf.image.random_flip_left_right

tf.image.random_flip_left_right(
    image,
    seed=None
)

更多内容详见tf.image.random_flip_left_right

mindspore.dataset.vision.RandomHorizontalFlip

class mindspore.dataset.vision.RandomHorizontalFlip(
    prob=0.5
)

更多内容详见mindspore.dataset.vision.RandomHorizontalFlip

使用方式

TensorFlow:随机水平翻转图像,概率为0.5,随机种子可通过入参指定。

MindSpore:随机水平翻转图像,概率可通过入参指定,随机种子需通过 mindspore.dataset.config.set_seed 全局设置。

代码示例

# The following implements RandomHorizontalFlip with MindSpore.
import numpy as np
import mindspore.dataset as ds

ds.config.set_seed(57)
image = np.random.random((28, 28, 3))
result = ds.vision.RandomHorizontalFlip(prob=0.5)(image)
print(result.shape)
# (28, 28, 3)

# The following implements random_flip_left_right with TensorFlow.
import tensorflow as tf

image = tf.random.normal((28, 28, 3))
result = tf.image.random_flip_left_right(image, seed=57)
print(result.shape)
# (28, 28, 3)
1
https://gitee.com/mindspore/docs.git
git@gitee.com:mindspore/docs.git
mindspore
docs
docs
r2.0.0-alpha

搜索帮助