recurrentshop
recurrentshop copied to clipboard
Framework for building complex recurrent neural networks with Keras
The classes GRNCell and LSTMCell are included in both basic_cells.py and cells.py. Is this intended?
Following the instructions for readout in the docs folder, I was able to successfully create a network that employed readout. So far, so good. The problems arose when I started...
I'm trying to build a custom RNN architecture and after banging my head against the Keras source code for a while I ended up here. recurrentshop is a super neat...
I am using teacher_force with tensorflow backend. But it failed when fit function called. when using theano as backend, my source code worked. my condition is as followeing. Keras 2.0.6...
``` ----> 1 from recurrentshop.cells import * ImportError: No module named 'recurrentshop.cells' ``` There is no error with import recurrentshop. How can I fix it? Thank you.
I am trying to connect a tensorflow placeholder with a keras recuurent shop model,Everything works fine when i use a simple keras model and feed it with a tensorflow placeholder...
Thanks for the great work! It really help me a lot. But there is still one point that I can't figure out. What is the principle of readout and teacher...
Hi I have try to run the seq2seq application. In that seq2seq lib calling the weight function from recurrentshop lib. But latest recurrentshop removed the weight funtion. My question is...
I run the example code in ./examples/speed_test.py the code here is: ``` rc = RecurrentContainer(input_length=input_length, unroll=unroll) for _ in range(depth): rc.add(rnn_cell(dim, input_dim=dim)) ``` But it raise TypeError in terminal with:...