Function tensorflow::ops::lstmblock_cell_grad
source · pub fn lstmblock_cell_grad<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>, O7: Into<Output>, O8: Into<Output>, O9: Into<Output>, O10: Into<Output>, O11: Into<Output>, O12: Into<Output>, O13: Into<Output>, O14: Into<Output>, O15: Into<Output>>(
x: O0,
cs_prev: O1,
h_prev: O2,
w: O3,
wci: O4,
wcf: O5,
wco: O6,
b: O7,
i: O8,
cs: O9,
f: O10,
o: O11,
ci: O12,
co: O13,
cs_grad: O14,
h_grad: O15,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for LSTMBlockCellGrad::new().build(x, cs_prev, h_prev, w, wci, wcf, wco, b, i, cs, f, o, ci, co, cs_grad, h_grad, scope)
.