作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道像这样指定数据增强之间是否有任何区别:
data_augmentation_options {
random_horizontal_flip {
}
}
data_augmentation_options {
ssd_random_crop {
}
}
data_augmentation_options {
random_horizontal_flip {
}
ssd_random_crop {
}
}
最佳答案
唯一正确的格式是第一个。
虽然第二个不会破坏管道,但它只会采用第一个指定的选项。
您可以通过检查在 model_dir 中创建的 pipeline.config 来验证这一点。
原因是data_augmentation_options
类型为 PreprocessingStep
其中包含一个 oneof preprocessing_step
.请注意 oneof
.
另一方面,data_augmentation_options
是 repeated
,因此您可以指定
data_augmentation_options {
augmentation_option_1 {
}
}
data_augmentation_options {
augmentation_option_2 {
}
}
...
关于TensorFlow 对象检测 API : specifying multiple data_augmentation_options,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53383151/
我已经使用 TensorFlow 成功训练了一个对象检测模型,示例配置如下:https://github.com/tensorflow/models/tree/master/object_detect
我想知道像这样指定数据增强之间是否有任何区别: data_augmentation_options { random_horizontal_flip { } } data_augmentati
我是一名优秀的程序员,十分优秀!