我正在使用Tensorflow API进行对象检测。我们如何实际在API中实现Hard Example Miner?是否与SSD Mobile Net的CONFIG文件中的方法相同?
我将其作为添加到SSDMobilenet CONFIG文件中的示例,但是我们如何在FasterRCNNInception上实现它呢?
n = 3000 # Number of images with no bounding boxes
hard_example_miner {
num_hard_examples: n
iou_threshold: 0.99
loss_type: CLASSIFICATION
max_negatives_per_positive: 3
in_negatives_per_image: 3
}