Click or drag to resize

GraphXlaSparseCoreFtrl Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation XlaSparseCoreFtrl(
	Output embedding_table,
	Output accumulator,
	Output linear,
	Output learning_rate,
	Output indices,
	Output gradient,
	Output beta,
	Output learning_rate_power,
	Output l2_regularization_strength,
	long feature_width,
	bool multiply_linear_by_learning_rate,
	float l1_regularization_strength,
	string opName = "XlaSparseCoreFtrl"
)

Parameters

embedding_table
Type: Emgu.TFOutput
Input to the operation.
accumulator
Type: Emgu.TFOutput
Input to the operation.
linear
Type: Emgu.TFOutput
Input to the operation.
learning_rate
Type: Emgu.TFOutput
Input to the operation.
indices
Type: Emgu.TFOutput
Input to the operation.
gradient
Type: Emgu.TFOutput
Input to the operation.
beta
Type: Emgu.TFOutput
Input to the operation.
learning_rate_power
Type: Emgu.TFOutput
Input to the operation.
l2_regularization_strength
Type: Emgu.TFOutput
Input to the operation.
feature_width
Type: SystemInt64
feature width
multiply_linear_by_learning_rate
Type: SystemBoolean
multiply linear by learning rate
l1_regularization_strength
Type: SystemSingle
l1 regularization strength
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). [2] updated_linear(type: DtFloat).
See Also