Click or drag to resize

GraphApplyAdam Method

https://www.emgu.com/wiki/index.php/Emgu_TF
ApplyAdam

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation ApplyAdam(
	Output var,
	Output m,
	Output v,
	Output beta1_power,
	Output beta2_power,
	Output lr,
	Output beta1,
	Output beta2,
	Output epsilon,
	Output grad,
	bool use_locking = false,
	bool use_nesterov = false,
	string opName = "ApplyAdam"
)

Parameters

var
Type: Emgu.TFOutput
Input to the operation.
m
Type: Emgu.TFOutput
Input to the operation.
v
Type: Emgu.TFOutput
Input to the operation.
beta1_power
Type: Emgu.TFOutput
Input to the operation.
beta2_power
Type: Emgu.TFOutput
Input to the operation.
lr
Type: Emgu.TFOutput
Input to the operation.
beta1
Type: Emgu.TFOutput
Input to the operation.
beta2
Type: Emgu.TFOutput
Input to the operation.
epsilon
Type: Emgu.TFOutput
Input to the operation.
grad
Type: Emgu.TFOutput
Input to the operation.
use_locking (Optional)
Type: SystemBoolean
use locking
use_nesterov (Optional)
Type: SystemBoolean
use nesterov
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] out(type: DtInvalid).
See Also