##Terms Get the latest rnn_cell.py from TensorFlow distribution. There is mi_linear.py attached to this gist, which is equivalent to function linear from rnn_cell.py but implements Multiplicative Integration with Recurrent Neural Networks (http://arxiv.org/pdf/1606.06630v1.pdf).
To complete the test, modify rnn_cell.py (set the name like mi_rnn_cell.py) to use Multiplicative Integration instead of classic approach in all types of RNNs, rename all modified classes (like LSTMCell -> MILSTMCell), update all the comments with proper namings and parameters description (imagine this file should be commited to TensorFlow repository).
To ease the requirements, features like sharding of weight matrices in LSTMCell could be stripped from modified implementation. For example, provided mi_linear function accepts only two parameters instead of parameters list. So it's ok to simplify where seems applicable but please do not strip peepholes from LSTMCell.
Prepare comparative tests (MIGRUCell vs GR