tf.distribute.experimental.partitioners.Partitioner
Базовый класс Partitioner: все partitioner наследуются от этого класса.
Partitioner должен реализовать метод __call__ со следующим сигнатуром:
def __call__(self, shape, dtype, axis=0): # Partitions the given `shape` and returns the partition results. # See docstring of `__call__` method for the format of partition results.
Методы
__call__
__call__(
shape, dtype, axis=0
)
Разделяет указанное shape и возвращает результаты разделения.
Примеры partitioner, который выделяет фиксированное количество фрагментов:
partitioner = FixedShardsPartitioner(num_shards=2) partitions = partitioner(tf.TensorShape([10, 3], tf.float32), axis=0) print(partitions) # [2, 0]
| Аргументы | |
|---|---|
shape | a tf.TensorShape, форма для разделения. |
dtype | a tf.dtypes.Dtype, указывающий тип значения разбиения. |
axis | Ось для разделения. По умолчанию: внешняя ось. |
| Возвращаемые значения | |
|---|---|
| Список целых чисел, представляющих количество разбиений на каждой оси, где i-е значение соответствует i-й оси. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.4/api_docs/python/tf/distribute/experimental/partitioners/Partitioner