Click or drag to resize

GraphBlockLSTM Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation BlockLSTM(
	Output seq_len_max,
	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 = "BlockLSTM"
)

Parameters

seq_len_max
Type: Emgu.TFOutput
Input to the operation.
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
The operation, where: [0] i(type: DtInvalid). [1] cs(type: DtInvalid). [2] f(type: DtInvalid). [3] o(type: DtInvalid). [4] ci(type: DtInvalid). [5] co(type: DtInvalid). [6] h(type: DtInvalid).
See Also