【发布时间】:2016-05-11 09:17:28
【问题描述】:
我正在尝试将深度学习应用于目标类(500k、31K)之间高度不平衡的二元分类问题。我想编写一个自定义的损失函数,应该是这样的: 最小化(100-((predicted_smallerclass)/(total_smallerclass))*100)
感谢有关如何构建此逻辑的任何指示。
【问题讨论】:
我正在尝试将深度学习应用于目标类(500k、31K)之间高度不平衡的二元分类问题。我想编写一个自定义的损失函数,应该是这样的: 最小化(100-((predicted_smallerclass)/(total_smallerclass))*100)
感谢有关如何构建此逻辑的任何指示。
【问题讨论】:
您可以通过乘以 logits 来为损失函数添加类权重。 常规的交叉熵损失是这样的:
loss(x, class) = -log(exp(x[class]) / (\sum_j exp(x[j])))
= -x[class] + log(\sum_j exp(x[j]))
在加权情况下:
loss(x, class) = weights[class] * -x[class] + log(\sum_j exp(weights[class] * x[j]))
因此,通过将 logits 相乘,您可以通过类权重重新调整每个类的预测。
例如:
ratio = 31.0 / (500.0 + 31.0)
class_weight = tf.constant([ratio, 1.0 - ratio])
logits = ... # shape [batch_size, 2]
weighted_logits = tf.mul(logits, class_weight) # shape [batch_size, 2]
xent = tf.nn.softmax_cross_entropy_with_logits(
weighted_logits, labels, name="xent_raw")
现在有一个标准的损失函数支持每批次的权重:
tf.losses.sparse_softmax_cross_entropy(labels=label, logits=logits, weights=weights)
应该将权重从类权重转换为每个示例的权重(形状为 [batch_size])。见documentation here。
【讨论】:
您提出的代码对我来说似乎是错误的。 损失应该乘以重量,我同意。
但是如果你将 logit 乘以类权重,你会得到:
weights[class] * -x[class] + log( \sum_j exp(x[j] * weights[class]) )
第二项不等于:
weights[class] * log(\sum_j exp(x[j]))
为了说明这一点,我们可以将后者重写为:
log( (\sum_j exp(x[j]) ^ weights[class] )
所以这是我提出的代码:
ratio = 31.0 / (500.0 + 31.0)
class_weight = tf.constant([[ratio, 1.0 - ratio]])
logits = ... # shape [batch_size, 2]
weight_per_label = tf.transpose( tf.matmul(labels
, tf.transpose(class_weight)) ) #shape [1, batch_size]
# this is the weight for each datapoint, depending on its label
xent = tf.mul(weight_per_label
, tf.nn.softmax_cross_entropy_with_logits(logits, labels, name="xent_raw") #shape [1, batch_size]
loss = tf.reduce_mean(xent) #shape 1
【讨论】:
\sum_ - 你能解释一下吗?似乎是乳胶代码;这在 Python 中有效吗?
使用 tf.nn.weighted_cross_entropy_with_logits() 并将 pos_weight 设置为 1 /(预期的阳性率)。
【讨论】:
为两个班级做了操作tf.nn.weighted_cross_entropy_with_logits():
classes_weights = tf.constant([0.1, 1.0])
cross_entropy = tf.nn.weighted_cross_entropy_with_logits(logits=logits, targets=labels, pos_weight=classes_weights)
【讨论】:
您可以在 tensorflow https://www.tensorflow.org/api_guides/python/contrib.losses 查看指南
...
虽然指定标量损失会重新调整整个批次的损失,但我们有时希望重新调整每个批次样本的损失。例如,如果我们有一些对我们来说更重要的样本来正确获取,那么我们可能希望比其他错误不太重要的样本有更高的损失。在这种情况下,我们可以提供一个长度为 batch_size 的权重向量,这会导致批次中每个样本的损失被相应的权重元素缩放。例如,考虑一个分类问题的情况,我们希望最大限度地提高准确率,但我们对获得特定类别的高精度特别感兴趣:
inputs, labels = LoadData(batch_size=3)
logits = MyModelPredictions(inputs)
# Ensures that the loss for examples whose ground truth class is `3` is 5x
# higher than the loss for all other examples.
weight = tf.multiply(4, tf.cast(tf.equal(labels, 3), tf.float32)) + 1
onehot_labels = tf.one_hot(labels, num_classes=5)
tf.contrib.losses.softmax_cross_entropy(logits, onehot_labels, weight=weight)
【讨论】:
我必须使用类似的多个类的不平衡数据集,这就是我的工作方式,希望它可以帮助寻找类似解决方案的人:
这在您的培训模块中:
from sklearn.utils.class_weight import compute_sample_weight
#use class weights for handling unbalanced dataset
if mode == 'INFER' #test/dev mode, not weighing loss in test mode
sample_weights = np.ones(labels.shape)
else:
sample_weights = compute_sample_weight(class_weight='balanced', y=labels)
这在您的模型类定义中:
#an extra placeholder for sample weights
#assuming you already have batch_size tensor
self.sample_weight = tf.placeholder(dtype=tf.float32, shape=[None],
name='sample_weights')
cross_entropy_loss = tf.nn.sparse_softmax_cross_entropy_with_logits(
labels=self.label, logits=logits,
name='cross_entropy_loss')
cross_entropy_loss = tf.reduce_sum(cross_entropy_loss*self.sample_weight) / batch_size
【讨论】:
""" Weighted binary crossentropy between an output tensor and a target tensor.
# Arguments
pos_weight: A coefficient to use on the positive examples.
# Returns
A loss function supposed to be used in model.compile().
"""
def weighted_binary_crossentropy(pos_weight=1):
def _to_tensor(x, dtype):
"""Convert the input `x` to a tensor of type `dtype`.
# Arguments
x: An object to be converted (numpy array, list, tensors).
dtype: The destination type.
# Returns
A tensor.
"""
return tf.convert_to_tensor(x, dtype=dtype)
def _calculate_weighted_binary_crossentropy(target, output, from_logits=False):
"""Calculate weighted binary crossentropy between an output tensor and a target tensor.
# Arguments
target: A tensor with the same shape as `output`.
output: A tensor.
from_logits: Whether `output` is expected to be a logits tensor.
By default, we consider that `output`
encodes a probability distribution.
# Returns
A tensor.
"""
# Note: tf.nn.sigmoid_cross_entropy_with_logits
# expects logits, Keras expects probabilities.
if not from_logits:
# transform back to logits
_epsilon = _to_tensor(K.epsilon(), output.dtype.base_dtype)
output = tf.clip_by_value(output, _epsilon, 1 - _epsilon)
output = log(output / (1 - output))
target = tf.dtypes.cast(target, tf.float32)
return tf.nn.weighted_cross_entropy_with_logits(labels=target, logits=output, pos_weight=pos_weight)
def _weighted_binary_crossentropy(y_true, y_pred):
return K.mean(_calculate_weighted_binary_crossentropy(y_true, y_pred), axis=-1)
return _weighted_binary_crossentropy
使用说明:
pos = #count of positive class
neg = #count of negative class
total = pos + neg
weight_for_0 = (1 / neg)*(total)/2.0
weight_for_1 = (1 / pos)*(total)/2.0
class_weight = {0: weight_for_0, 1: weight_for_1}
model = <your model>
model.compile(
optimizer=tf.keras.optimizers.Adam(learning_rate=1e-4),
loss=weighted_binary_crossentropy(weight_for_1),
metrics=tf.keras.metrics.Precision(name='precision')
)
【讨论】: