tensorflow :: ops :: ApplyProximalAdagrad
#include <training_ops.h>
Adagrad 학습률로 FOBOS에 따라 '* var'및 '* accum'을 업데이트합니다.
요약
accum + = grad * grad prox_v = var-lr * grad * (1 / sqrt (accum)) var = sign (prox_v) / (1 + lr * l2) * max {| prox_v | -lr * l1,0}
인수 :
- 범위 : 범위 개체
- var : Variable ()에서 가져와야합니다.
- accum : Variable ()에서 가져와야합니다.
- lr : 배율. 스칼라 여야합니다.
- l1 : L1 정규화. 스칼라 여야합니다.
- l2 : L2 정규화. 스칼라 여야합니다.
- grad : 그래디언트입니다.
선택적 속성 ( Attrs
참조) :
- use_locking : True이면 var 및 accum 텐서의 업데이트는 잠금으로 보호됩니다. 그렇지 않으면 동작이 정의되지 않지만 경합이 적을 수 있습니다.
보고:
-
Output
: "var"와 동일합니다.
생성자와 소멸자 | |
---|---|
ApplyProximalAdagrad (const :: tensorflow::Scope & scope, :: tensorflow::Input var, :: tensorflow::Input accum, :: tensorflow::Input lr, :: tensorflow::Input l1, :: tensorflow::Input l2, :: tensorflow::Input grad) | |
ApplyProximalAdagrad (const :: tensorflow::Scope & scope, :: tensorflow::Input var, :: tensorflow::Input accum, :: tensorflow::Input lr, :: tensorflow::Input l1, :: tensorflow::Input l2, :: tensorflow::Input grad, const ApplyProximalAdagrad::Attrs & attrs) |
공용 속성 | |
---|---|
operation | |
out |
공공 기능 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
공개 정적 함수 | |
---|---|
UseLocking (bool x) |
구조체 | |
---|---|
tensorflow :: ops :: ApplyProximalAdagrad :: Attrs | ApplyProximalAdagrad에 대한 선택적 속성 설정자입니다. |
공용 속성
조작
Operation operation
밖
::tensorflow::Output out
공공 기능
ApplyProximalAdagrad
ApplyProximalAdagrad( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input accum, ::tensorflow::Input lr, ::tensorflow::Input l1, ::tensorflow::Input l2, ::tensorflow::Input grad )
ApplyProximalAdagrad
ApplyProximalAdagrad( const ::tensorflow::Scope & scope, ::tensorflow::Input var, ::tensorflow::Input accum, ::tensorflow::Input lr, ::tensorflow::Input l1, ::tensorflow::Input l2, ::tensorflow::Input grad, const ApplyProximalAdagrad::Attrs & attrs )
마디
::tensorflow::Node * node() const
연산자 :: tensorflow :: 입력
operator::tensorflow::Input() const
연산자 :: tensorflow :: 출력
operator::tensorflow::Output() const
공개 정적 함수
사용 잠금
Attrs UseLocking( bool x )