使用来自r keras的image_data_generator具有符号概率
Albimotations(在Python中)具有图像转换,可以采用概率参数 p
,“ nofollow noreferrer”>例如:
transform = A.Compose([
A.RandomRotate90(),
A.Flip(),
A.Transpose(),
A.OneOf([
A.IAAAdditiveGaussianNoise(),
A.GaussNoise(),
], p=0.2),
A.OneOf([
A.MotionBlur(p=.2),
A.MedianBlur(blur_limit=3, p=0.1),
A.Blur(blur_limit=3, p=0.1),
], p=0.2),
A.ShiftScaleRotate(shift_limit=0.0625, scale_limit=0.2, rotate_limit=45, p=0.2),
A.OneOf([
A.OpticalDistortion(p=0.3),
A.GridDistortion(p=.1),
A.IAAPiecewiseAffine(p=0.3),
], p=0.2),
A.OneOf([
A.CLAHE(clip_limit=2),
A.IAASharpen(),
A.IAAEmboss(),
A.RandomBrightnessContrast(),
], p=0.3),
A.HueSaturationValue(p=0.3),
])
rstudio的keras实现具有 A>,具有图像转换,但没有概率参数。
在Rstudio的Keras中将图像转换整合在一起的最简单方法是什么?
一种方法是通过比看起来更难。
想法?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现数据集管道的推荐方法是将{tfdatasets}与Keras预处理层结合使用。
可以在此处找到更多示例:
如果您从事自定义转换,也可以在当地的后卫中放置:
The recommended way to implement a dataset pipeline is to use {tfdatasets} in combination with keras preprocessing layers.
More examples can be found here: https://keras.rstudio.com/articles/new-guides/preprocessing_layers.html#quick-recipes-1
If you get into making custom transformations, you can also put then in a guard locally like this: