分区器指定沿给定轴的固定数量的分片。
用法
tf.compat.v1.fixed_size_partitioner(
num_shards, axis=0
)
参数
-
num_shards
int
,分区变量的分片数。 -
axis
int
,要分区的轴。
返回
-
可用作
variable_scope
和get_variable
的partitioner
参数的分区函数。
迁移到 TF2
警告:这个 API 是为 TensorFlow v1 设计的。继续阅读有关如何从该 API 迁移到本机 TensorFlow v2 等效项的详细信息。见TensorFlow v1 到 TensorFlow v2 迁移指南有关如何迁移其余代码的说明。
此 API 在 TF2 中已弃用。在 TF2 中,分区器不再是通过 tf.Variable
声明的变量的一部分。 ParameterServer Training 处理变量的分区。 fixed_size_partitioner
对应的 TF2 分区器类是 tf.distribute.experimental.partitioners.FixedShardsPartitioner
。
查看迁移指南,了解 TF1 和 TF2 在处理变量和损失方面的差异。
前:
x = tf.compat.v1.get_variable(
"x", shape=(2,), partitioner=tf.compat.v1.fixed_size_partitioner(2)
)
后:
partitioner = (
tf.distribute.experimental.partitioners.FixedShardsPartitioner(
num_shards=2)
)
strategy = tf.distribute.experimental.ParameterServerStrategy(
cluster_resolver=cluster_resolver,
variable_partitioner=partitioner)
with strategy.scope():
x = tf.Variable([1.0, 2.0])
相关用法
- Python tf.compat.v1.feature_column.categorical_column_with_vocabulary_file用法及代码示例
- Python tf.compat.v1.foldr用法及代码示例
- Python tf.compat.v1.feature_column.make_parse_example_spec用法及代码示例
- Python tf.compat.v1.feature_column.linear_model用法及代码示例
- Python tf.compat.v1.feature_column.shared_embedding_columns用法及代码示例
- Python tf.compat.v1.foldl用法及代码示例
- Python tf.compat.v1.flags.BaseListParser用法及代码示例
- Python tf.compat.v1.feature_column.input_layer用法及代码示例
- Python tf.compat.v1.flags.FlagHolder用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python tf.compat.v1.Variable.eval用法及代码示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代码示例
- Python tf.compat.v1.layers.conv3d用法及代码示例
- Python tf.compat.v1.strings.length用法及代码示例
- Python tf.compat.v1.data.Dataset.snapshot用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.reduce用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.from_tensors用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.fixed_size_partitioner。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。