Spec-Zone.ru › TensorFlow C++ 1.15

tensorflow::ops::ScatterMax

#include <state_ops.h>

Выполняет разрозненные обновления переменной с помощью операции max.

Summary

Эта операция вычисляет

# Scalar indices
ref[indices, ...] = max(ref[indices, ...], updates[...])

# Vector indices (for each i)
ref[indices[i], ...] = max(ref[indices[i], ...], updates[i, ...])

# High rank indices (for each i, ..., j)
ref[indices[i, ..., j], ...] = max(ref[indices[i, ..., j], ...], updates[i, ..., j, ...])

Эта операция возвращает ref после завершения обновления. Это облегчает цепочку операций, которым необходимо использовать значение после сброса.

Дублирующиеся записи обрабатываются корректно: если несколько indices ссылаются на одно и то же местоположение, их вклады объединяются.

Требует updates.shape = indices.shape + ref.shape[1:] или updates.shape = [].

Аргументы:

  • scope: Объект Scope
  • ref: Должен быть получен из узла Variable.
  • indices: Массив индексов в первом измерении ref.
  • updates: Массив обновляемых значений для уменьшения в ref.

Необязательные атрибуты (см. Attrs):

  • use_locking: Если True, обновление будет защищено блокировкой; в противном случае поведение не определено, но может быть менее конфликтным.

Возвращаемое значение:

  • Output: = То же, что и ref. Возвращается для удобства операций, которые хотят использовать обновлённые значения после завершения обновления.
Конструкторы и деструкторы
ScatterMax(const ::tensorflow::Scope & scope, ::tensorflow::Input ref, ::tensorflow::Input indices, ::tensorflow::Input updates)
ScatterMax(const ::tensorflow::Scope & scope, ::tensorflow::Input ref, ::tensorflow::Input indices, ::tensorflow::Input updates, const ScatterMax::Attrs & attrs)
Общедоступные атрибуты
operation
Operation
output_ref
::tensorflow::Output
Общедоступные функции
node() const
::tensorflow::Node *
operator::tensorflow::Input() const
operator::tensorflow::Output() const
Общедоступные статические функции
UseLocking(bool x)
Attrs
Структуры
tensorflow::ops::ScatterMax::Attrs

Необязательные устанавливатели атрибутов для ScatterMax.

Общедоступные атрибуты

operation

Operation operation

output_ref

::tensorflow::Output output_ref

Общедоступные функции

ScatterMax

 ScatterMax(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input ref,
  ::tensorflow::Input indices,
  ::tensorflow::Input updates
)

ScatterMax

 ScatterMax(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input ref,
  ::tensorflow::Input indices,
  ::tensorflow::Input updates,
  const ScatterMax::Attrs & attrs
)

node

::tensorflow::Node * node() const 

operator::tensorflow::Input

operator::tensorflow::Input() const 

operator::tensorflow::Output

operator::tensorflow::Output() const 

Общедоступные статические функции

UseLocking

Attrs UseLocking(
  bool x
)

© 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/r1.15/api_docs/cc/class/tensorflow/ops/scatter-max

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API