Thanks for you code and the design of Hypercell is amazing!
I have a question about the initialization of the cell.
self.cell= supercell.HyperLSTMCell(num_units=args.state_size.....)
output, self.last_state = tf.nn.dynamic_rnn(self.cell, self.X, initial_state=??? )
While I use the basic LSTMcell, the tf has a method to init the cell into zero state.
However the zero init perform not very good, do you have any idea of a better way to init the Hypercell?
Thanks a lot again!