Click or drag to resize

GraphSparseApplyAdagradDA Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation SparseApplyAdagradDA(
	Output var,
	Output gradient_accumulator,
	Output gradient_squared_accumulator,
	Output grad,
	Output indices,
	Output lr,
	Output l1,
	Output l2,
	Output global_step,
	bool use_locking = false,
	string opName = "SparseApplyAdagradDA"
)

Parameters

var
Type: Emgu.TFOutput
Input to the operation.
gradient_accumulator
Type: Emgu.TFOutput
Input to the operation.
gradient_squared_accumulator
Type: Emgu.TFOutput
Input to the operation.
grad
Type: Emgu.TFOutput
Input to the operation.
indices
Type: Emgu.TFOutput
Input to the operation.
lr
Type: Emgu.TFOutput
Input to the operation.
l1
Type: Emgu.TFOutput
Input to the operation.
l2
Type: Emgu.TFOutput
Input to the operation.
global_step
Type: Emgu.TFOutput
Input to the operation.
use_locking (Optional)
Type: SystemBoolean
use locking
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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