tensorflow::ops::ResourceSparseApplyProximalGradientDescent
#include <training_ops.h>
Рассыпанное обновление '*var' по алгоритму FOBOS с фиксированной скоростью обучения.
Краткое описание
Для строк, для которых у нас есть grad, мы обновляем var следующим образом: prox_v = var - alpha * grad var = sign(prox_v)/(1+alpha*l2) * max{|prox_v|-alpha*l1,0}
Аргументы:
- scope: Объект Scope
- var: Должен быть из Variable().
- alpha: Коэффициент масштабирования. Должен быть скаляром.
- l1: Регуляризация L1. Должен быть скаляром.
- l2: Регуляризация L2. Должен быть скаляром.
- grad: Градиент.
- indices: Вектор индексов в первом измерении var и accum.
Дополнительные атрибуты (см. Attrs):
- use_locking: Если True, вычитание будет защищено блокировкой; в противном случае поведение не определено, но может быть меньше конкуренции.
Возвращает:
- созданный
Operation
| Конструкторы и деструкторы | |
|---|---|
ResourceSparseApplyProximalGradientDescent(const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input alpha, ::tensorflow::Input l1, ::tensorflow::Input l2, ::tensorflow::Input grad, ::tensorflow::Input indices) | |
ResourceSparseApplyProximalGradientDescent(const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input alpha, ::tensorflow::Input l1, ::tensorflow::Input l2, ::tensorflow::Input grad, ::tensorflow::Input indices, const ResourceSparseApplyProximalGradientDescent::Attrs & attrs) |
| Публичные атрибуты | |
|---|---|
operation | |
| Публичные функции | |
|---|---|
operator::tensorflow::Operation() const | |
| Публичные статические функции | |
|---|---|
UseLocking(bool x) | |
| Структуры | |
|---|---|
| tensorflow::ops::ResourceSparseApplyProximalGradientDescent::Attrs | Дополнительные атрибуты для установки ResourceSparseApplyProximalGradientDescent. |
Публичные атрибуты
operation
Operation operation
Публичные функции
ResourceSparseApplyProximalGradientDescent
ResourceSparseApplyProximalGradientDescent( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input alpha, ::tensorflow::Input l1, ::tensorflow::Input l2, ::tensorflow::Input grad, ::tensorflow::Input indices )
ResourceSparseApplyProximalGradientDescent
ResourceSparseApplyProximalGradientDescent( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input alpha, ::tensorflow::Input l1, ::tensorflow::Input l2, ::tensorflow::Input grad, ::tensorflow::Input indices, const ResourceSparseApplyProximalGradientDescent::Attrs & attrs )
Оператор::tensorflow::Операция
operator::tensorflow::Operation() const
Публичные статические функции
UseLocking
Attrs UseLocking( bool x )
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.9/api_docs/cc/class/tensorflow/ops/resource-sparse-apply-proximal-gradient-descent