Click or drag to resize

GraphXlaSparseCoreAdagrad Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation XlaSparseCoreAdagrad(
	Output indices,
	Output gradient,
	Output learning_rate,
	Output accumulator,
	Output embedding_table,
	long feature_width,
	string opName = "XlaSparseCoreAdagrad"
)

Parameters

indices
Type: Emgu.TFOutput
Input to the operation.
gradient
Type: Emgu.TFOutput
Input to the operation.
learning_rate
Type: Emgu.TFOutput
Input to the operation.
accumulator
Type: Emgu.TFOutput
Input to the operation.
embedding_table
Type: Emgu.TFOutput
Input to the operation.
feature_width
Type: SystemInt64
feature width
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] updated_embedding_table(type: DtFloat). [1] updated_accumulator(type: DtFloat).
See Also