336 Star 1.5K Fork 868

MindSpore / docs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
random_flip_left_right.md 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
宦晓玲 提交于 2023-07-21 16:52 . modify the md links 1.8

Function Differences with tf.image.random_flip_left_right

View Source On Gitee

tf.image.random_flip_left_right

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

For more information, see tf.image.random_flip_left_right.

mindspore.dataset.vision.RandomHorizontalFlip

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

For more information, see mindspore.dataset.vision.RandomHorizontalFlip.

Differences

TensorFlow: Randomly flip the image horizontally with a probability of 0.5. The random seed can be specified by the input parameter.

MindSpore: Randomly flip the image horizontally with the specified probability. The global random seed can to be set through mindspore.dataset.config.set_seed.

Code Example

# 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)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mindspore/docs.git
git@gitee.com:mindspore/docs.git
mindspore
docs
docs
r1.8

搜索帮助

344bd9b3 5694891 D2dac590 5694891