Click or drag to resize

GraphApplyAdagradV2 Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation ApplyAdagradV2(
	Output var,
	Output accum,
	Output lr,
	Output epsilon,
	Output grad,
	bool use_locking = false,
	bool update_slots = true,
	string opName = "ApplyAdagradV2"
)

Parameters

var
Type: Emgu.TFOutput
Input to the operation.
accum
Type: Emgu.TFOutput
Input to the operation.
lr
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
update_slots (Optional)
Type: SystemBoolean
update slots
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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