Click or drag to resize

GraphXlaSparseCoreAdam Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation XlaSparseCoreAdam(
	Output embedding_table,
	Output indices,
	Output gradient,
	Output learning_rate,
	Output momentum,
	Output velocity,
	Output beta_1,
	Output beta_2,
	Output epsilon,
	long feature_width,
	bool use_sum_inside_sqrt,
	string opName = "XlaSparseCoreAdam"
)

Parameters

embedding_table
Type: Emgu.TFOutput
Input to the operation.
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.
momentum
Type: Emgu.TFOutput
Input to the operation.
velocity
Type: Emgu.TFOutput
Input to the operation.
beta_1
Type: Emgu.TFOutput
Input to the operation.
beta_2
Type: Emgu.TFOutput
Input to the operation.
epsilon
Type: Emgu.TFOutput
Input to the operation.
feature_width
Type: SystemInt64
feature width
use_sum_inside_sqrt
Type: SystemBoolean
use sum inside sqrt
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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