ngraph::pass::RNNCellDecomposition Class Reference

RNNCellDecomposition transformation decomposes RNNCell layer with inputs X, H, W, R, B to Add, MatMul ops according to the formula: More...

#include <rnn_cell_decomposition.hpp>

Inheritance diagram for ngraph::pass::RNNCellDecomposition:

Detailed Description

RNNCellDecomposition transformation decomposes RNNCell layer with inputs X, H, W, R, B to Add, MatMul ops according to the formula:

Ht = f(Xt*(Wi^T) + Ht-1*(Ri^T) + Wbi + Rbi)


The documentation for this class was generated from the following file: