Function tensorflow::ops::cudnn_rnnbackprop
source · pub fn cudnn_rnnbackprop<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>>(
input: O0,
input_h: O1,
input_c: O2,
params: O3,
output: O4,
output_h: O5,
output_c: O6,
output_backprop: O7,
output_h_backprop: O8,
output_c_backprop: O9,
reserve_space: O10,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for CudnnRNNBackprop::new().build(input, input_h, input_c, params, output, output_h, output_c, output_backprop, output_h_backprop, output_c_backprop, reserve_space, scope)
.