我已成功使用TensorFlow训练了一个对象检测模型,其中的示例配置如下:https://github.com/tensorflow/models/tree/master/object_detection/samples/configs
现在我想微调我的配置以获得更好的结果.我在其中看到的一个有前景的选项是"train_config"下的"data_augmentation_options".目前,它看起来像这样:
train_config: {
batch_size: 1
...
data_augmentation_options {
random_horizontal_flip {
}
}
}
Run Code Online (Sandbox Code Playgroud)
还有其他选项可以进行随机缩放,裁剪或调整亮度吗?