@Operator public final class ResourceApplyKerasMomentum extends PrimitiveOp
want to use Nesterov momentum.
accum = accum * momentum - lr * grad var += accum
| Modifier and Type | Class and Description |
|---|---|
static class |
ResourceApplyKerasMomentum.Options
Optional attributes for
ResourceApplyKerasMomentum |
operation| Modifier and Type | Method and Description |
|---|---|
static <T> ResourceApplyKerasMomentum |
create(Scope scope,
Operand<?> var,
Operand<?> accum,
Operand<T> lr,
Operand<T> grad,
Operand<T> momentum,
ResourceApplyKerasMomentum.Options... options)
Factory method to create a class to wrap a new ResourceApplyKerasMomentum operation to the graph.
|
static ResourceApplyKerasMomentum.Options |
useLocking(Boolean useLocking) |
static ResourceApplyKerasMomentum.Options |
useNesterov(Boolean useNesterov) |
equals, hashCode, toStringpublic static <T> ResourceApplyKerasMomentum create(Scope scope, Operand<?> var, Operand<?> accum, Operand<T> lr, Operand<T> grad, Operand<T> momentum, ResourceApplyKerasMomentum.Options... options)
scope - current graph scopevar - Should be from a Variable().accum - Should be from a Variable().lr - Scaling factor. Must be a scalar.grad - The gradient.momentum - Momentum. Must be a scalar.options - carries optional attributes valuespublic static ResourceApplyKerasMomentum.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 ResourceApplyKerasMomentum.Options useNesterov(Boolean useNesterov)
useNesterov - If `True`, the tensor passed to compute grad will be
var + momentum * accum, so in the end, the var you get is actually
var + momentum * accum.Copyright © 2015–2019. All rights reserved.