【发布时间】:2017-12-07 22:43:45
【问题描述】:
我已经使用 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 {
}
}
}
是否有其他选项可以进行随机缩放、裁剪或调整亮度?
【问题讨论】:
标签: tensorflow configuration object-detection