TensorFlow:跨多台机器进行训练时,数据并行端点的目的是什么?
TensorFlow: What is the purpose of endpoints for data parallelism when training across multiple machines?
在TensorFlow-slim
源代码中,在创建其损失函数时指出了一个端点:
def clone_fn(batch_queue):
"""Allows data parallelism by creating multiple clones of network_fn."""
images, labels = batch_queue.dequeue()
logits, end_points = network_fn(images)
#############################
# Specify the loss function #
#############################
if 'AuxLogits' in end_points:
slim.losses.softmax_cross_entropy(
end_points['AuxLogits'], labels,
label_smoothing=FLAGS.label_smoothing, weight=0.4, scope='aux_loss')
slim.losses.softmax_cross_entropy(
logits, labels, label_smoothing=FLAGS.label_smoothing, weight=1.0)
return end_points
来源:https://github.com/tensorflow/models/blob/master/slim/train_image_classifier.py#L471-L477
我的想法是有多个相同的网络在不同的机器上训练,最后将变量和参数平均化合并到一个网络中(这是正确的吗?)。但是我不太明白在这种情况下端点的目的是什么,因为我认为 network_fn 应该只为预测生成逻辑。 end_points有什么用?
本例中的endpoints
只是跟踪模型的不同输出。例如,AuxLogits
有 logits。
在TensorFlow-slim
源代码中,在创建其损失函数时指出了一个端点:
def clone_fn(batch_queue):
"""Allows data parallelism by creating multiple clones of network_fn."""
images, labels = batch_queue.dequeue()
logits, end_points = network_fn(images)
#############################
# Specify the loss function #
#############################
if 'AuxLogits' in end_points:
slim.losses.softmax_cross_entropy(
end_points['AuxLogits'], labels,
label_smoothing=FLAGS.label_smoothing, weight=0.4, scope='aux_loss')
slim.losses.softmax_cross_entropy(
logits, labels, label_smoothing=FLAGS.label_smoothing, weight=1.0)
return end_points
来源:https://github.com/tensorflow/models/blob/master/slim/train_image_classifier.py#L471-L477
我的想法是有多个相同的网络在不同的机器上训练,最后将变量和参数平均化合并到一个网络中(这是正确的吗?)。但是我不太明白在这种情况下端点的目的是什么,因为我认为 network_fn 应该只为预测生成逻辑。 end_points有什么用?
本例中的endpoints
只是跟踪模型的不同输出。例如,AuxLogits
有 logits。