gpt4 book ai didi

python - Tensorflow variable_scope 中的 partitioner 参数有什么用?

转载 作者:太空狗 更新时间:2023-10-30 01:05:10 55 4
gpt4 key购买 nike

tf.variable_scope 有一个 partitioner 参数,如 documentation 中所述.

据我了解,它用于分布式训练。谁能更详细地解释它的正确用法是什么?

最佳答案

巨大的 tensorflow 变量可以在多台机器上分片(参见 this discussion )。 Partitioner 是一种机制,tensorflow 通过它分配和组装张量,以便程序的其余部分不知道这些实现细节并以通常的方式处理张量。

您可以通过 tf.get_variable 为每个变量指定分区程序:

If a partitioner is provided, a PartitionedVariable is returned. Accessing this object as a Tensor returns the shards concatenated along the partition axis.

或者您通过 tf.variable_scope 为整个范围定义默认分区程序,这将影响其中定义的所有变量。

请参阅 this page 上 tensorflow 1.3 中的可用分区器列表.最简单的是 tf.fixed_size_partitioner,它沿着指定的轴对张量进行分片。这是一个示例用法(来自 this question ):

w = tf.get_variable("weights",                                        
weights_shape,
partitioner=tf.fixed_size_partitioner(num_shards, axis=0),
initializer=tf.truncated_normal_initializer(stddev=0.1))

关于python - Tensorflow variable_scope 中的 partitioner 参数有什么用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47170879/

55 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com