Click or drag to resize

GraphLSTMBlockCell Method

http://www.emgu.com
LSTMBlockCell

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 1.0.0
Syntax
public Operation LSTMBlockCell(
	Output x,
	Output cs_prev,
	Output h_prev,
	Output w,
	Output wci,
	Output wcf,
	Output wco,
	Output b,
	float forget_bias = 1f,
	float cell_clip = 3f,
	bool use_peephole = false,
	string opName = "LSTMBlockCell"
)

Parameters

x
Type: Emgu.TFOutput
Input to the operation.
cs_prev
Type: Emgu.TFOutput
Input to the operation.
h_prev
Type: Emgu.TFOutput
Input to the operation.
w
Type: Emgu.TFOutput
Input to the operation.
wci
Type: Emgu.TFOutput
Input to the operation.
wcf
Type: Emgu.TFOutput
Input to the operation.
wco
Type: Emgu.TFOutput
Input to the operation.
b
Type: Emgu.TFOutput
Input to the operation.
forget_bias (Optional)
Type: SystemSingle
forget bias
cell_clip (Optional)
Type: SystemSingle
cell clip
use_peephole (Optional)
Type: SystemBoolean
use peephole
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation

[Missing <returns> documentation for "M:Emgu.TF.Graph.LSTMBlockCell(Emgu.TF.Output,Emgu.TF.Output,Emgu.TF.Output,Emgu.TF.Output,Emgu.TF.Output,Emgu.TF.Output,Emgu.TF.Output,Emgu.TF.Output,System.Single,System.Single,System.Boolean,System.String)"]

See Also