当我训练 Faster rcnn 时,如何在 Tensorflow 对象检测 API 中使用 label_smooth?我尝试将 label_smoothing = 0.1factor = tf.constant(label_smoothing)target_tensor *= (1 - factor)target_te...
当我训练 Faster rcnn 时,如何在 Tensorflow 对象检测 API 中使用 label_smooth?
我尝试
label_smoothing = 0.1
factor = tf.constant(label_smoothing)
target_tensor *= (1 - factor)
target_tensor += (factor / target_tensor.shape[2].value)
在loss.py类中,WeightedSoftmaxClassificationLoss(Loss):
但这没有任何效果。即使删除整个类也不会影响训练。
我该把损失放在哪里呢?
谢谢