Używam tensorflow do segmentacji semantycznej. Jak mogę powiedzieć tensorflow, aby zignorował określoną etykietę podczas obliczania straty w pikselach?Tensorflow: Jak zignorować określone etykiety podczas segmentacji semantycznej?
Przeczytałem in this post, że dla klasyfikacji obrazów można ustawić etykietę na -1
i zostanie ona zignorowana. Jeśli to prawda, biorąc pod uwagę tensor etykiet, w jaki sposób mogę zmodyfikować moje etykiety tak, aby niektóre wartości zostały zmienione na -1
?
W Matlab byłoby coś jak:
ignore_label = 255
myLabelTensor(myLabelTensor == ignore_label) = -1
Ale nie wiem, jak to zrobić w TF?
Niektóre informacje tła:
ten sposób etykiety są ładowane:
label_contents = tf.read_file(input_queue[1])
label = tf.image.decode_png(label_contents, channels=1)
ten sposób strata jest obecnie obliczane:
raw_output = net.layers['fc1_voc12']
prediction = tf.reshape(raw_output, [-1, n_classes])
label_proc = prepare_label(label_batch, tf.pack(raw_output.get_shape()[1:3]),n_classes)
gt = tf.reshape(label_proc, [-1, n_classes])
# Pixel-wise softmax loss.
loss = tf.nn.softmax_cross_entropy_with_logits(prediction, gt)
reduced_loss = tf.reduce_mean(loss)
z
def prepare_label(input_batch, new_size, n_classes):
"""Resize masks and perform one-hot encoding.
Args:
input_batch: input tensor of shape [batch_size H W 1].
new_size: a tensor with new height and width.
Returns:
Outputs a tensor of shape [batch_size h w 21]
with last dimension comprised of 0's and 1's only.
"""
with tf.name_scope('label_encode'):
input_batch = tf.image.resize_nearest_neighbor(input_batch, new_size) # as labels are integer numbers, need to use NN interp.
input_batch = tf.squeeze(input_batch, squeeze_dims=[3]) # reducing the channel dimension.
input_batch = tf.one_hot(input_batch, depth=n_classes)
return input_batch
I używasz tensorflow-deeplab-resnet model, która przenosi Resnet model wdrożony w Caffe do tensorflow przy użyciu caffe-tensorflow.
Możliwy duplikat [TensorFlow: Jak obsługiwać void oznaczone danych w segmentacji obrazu] (https://stackoverflow.com/questions/46097968/tensorflow-how-to-handle-void-labeled-data- w segmentacji obrazu) – Shai