分區器指定沿給定軸的固定數量的分片。
用法
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。