Function tensorflow::ops::grublock_cell

source ·
pub fn grublock_cell<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>>(
    x: O0,
    h_prev: O1,
    w_ru: O2,
    w_c: O3,
    b_ru: O4,
    b_c: O5,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for GRUBlockCell::new().build(x, h_prev, w_ru, w_c, b_ru, b_c, scope).