@Operator public final class ResourceSparseApplyMomentum extends PrimitiveOp
Set use_nesterov = True if you want to use Nesterov momentum.
That is for rows we have grad for, we update var and accum as follows:
accum = accum * momentum + grad var -= lr * accum
| Modifier and Type | Class and Description |
|---|---|
static class |
ResourceSparseApplyMomentum.Options
Optional attributes for
ResourceSparseApplyMomentum |
operation| Modifier and Type | Method and Description |
|---|---|
static <T,U extends Number> |
create(Scope scope,
Operand<?> var,
Operand<?> accum,
Operand<T> lr,
Operand<T> grad,
Operand<U> indices,
Operand<T> momentum,
ResourceSparseApplyMomentum.Options... options)
Factory method to create a class to wrap a new ResourceSparseApplyMomentum operation to the graph.
|
static ResourceSparseApplyMomentum.Options |
useLocking(Boolean useLocking) |
static ResourceSparseApplyMomentum.Options |
useNesterov(Boolean useNesterov) |
equals, hashCode, toStringpublic static <T,U extends Number> ResourceSparseApplyMomentum create(Scope scope, Operand<?> var, Operand<?> accum, Operand<T> lr, Operand<T> grad, Operand<U> indices, Operand<T> momentum, ResourceSparseApplyMomentum.Options... options)
scope - current graph scopevar - Should be from a Variable().accum - Should be from a Variable().lr - Learning rate. Must be a scalar.grad - The gradient.indices - A vector of indices into the first dimension of var and accum.momentum - Momentum. Must be a scalar.options - carries optional attributes valuespublic static ResourceSparseApplyMomentum.Options useLocking(Boolean useLocking)
useLocking - If `True`, updating of the var and accum tensors will be protected
by a lock; otherwise the behavior is undefined, but may exhibit less
contention.public static ResourceSparseApplyMomentum.Options useNesterov(Boolean useNesterov)
useNesterov - If `True`, the tensor passed to compute grad will be
var - lr * momentum * accum, so in the end, the var you get is actually
var - lr * momentum * accum.Copyright © 2015–2019. All rights reserved.