Click or drag to resize

GraphSdcaOptimizerV2 Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation SdcaOptimizerV2(
	Output sparse_example_indices,
	Output sparse_feature_indices,
	Output sparse_feature_values,
	Output dense_features,
	Output example_weights,
	Output example_labels,
	Output sparse_indices,
	Output sparse_weights,
	Output dense_weights,
	Output example_state_data,
	string loss_type,
	float l1,
	float l2,
	long num_loss_partitions,
	long num_inner_iterations,
	bool adaptive = false,
	string opName = "SdcaOptimizerV2"
)

Parameters

sparse_example_indices
Type: Emgu.TFOutput
Input to the operation.
sparse_feature_indices
Type: Emgu.TFOutput
Input to the operation.
sparse_feature_values
Type: Emgu.TFOutput
Input to the operation.
dense_features
Type: Emgu.TFOutput
Input to the operation.
example_weights
Type: Emgu.TFOutput
Input to the operation.
example_labels
Type: Emgu.TFOutput
Input to the operation.
sparse_indices
Type: Emgu.TFOutput
Input to the operation.
sparse_weights
Type: Emgu.TFOutput
Input to the operation.
dense_weights
Type: Emgu.TFOutput
Input to the operation.
example_state_data
Type: Emgu.TFOutput
Input to the operation.
loss_type
Type: SystemString
loss type
l1
Type: SystemSingle
l1
l2
Type: SystemSingle
l2
num_loss_partitions
Type: SystemInt64
num loss partitions
num_inner_iterations
Type: SystemInt64
num inner iterations
adaptive (Optional)
Type: SystemBoolean
adaptive
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] out_example_state_data(type: DtFloat). [1] out_delta_sparse_weights(type: DtFloat). [2] out_delta_dense_weights(type: DtFloat).
See Also