Click or drag to resize

GraphLRNGrad Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation LRNGrad(
	Output input_grads,
	Output input_image,
	Output output_image,
	long depth_radius = 5,
	float bias = 1f,
	float alpha = 1f,
	float beta = 0.5f,
	string opName = "LRNGrad"
)

Parameters

input_grads
Type: Emgu.TFOutput
Input to the operation.
input_image
Type: Emgu.TFOutput
Input to the operation.
output_image
Type: Emgu.TFOutput
Input to the operation.
depth_radius (Optional)
Type: SystemInt64
depth radius
bias (Optional)
Type: SystemSingle
bias
alpha (Optional)
Type: SystemSingle
alpha
beta (Optional)
Type: SystemSingle
beta
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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