ylmeng

Results 6 comments of ylmeng

Thanks. It is not a major issue, just a little inelegant. BTW I have some other questions about the implementation. (1) For each batch, does the code clear the memory...

Thanks. Just one more question: Why do you make the LSTM controller stateful=True by default? I mean what is the benefit of having a stateful LSTM here. If I understand...

I see. Since NMT is inherited from Recurrent object, it probably supports multiple steps by default. When the controller is an LSTM, it reads and writes to M in every...

In fact I have two kinds of time steps, a larger scope and a smaller scope. As a simplified version, you can think of (documents, sentences_in_doc, words_in_sentences, word_vectors). Since a...

I noticed you use two constants here: ``` init_old_ntm_output = K.ones((self.batch_size, self.output_dim), name="init_old_ntm_output")*0.42 init_M = K.ones((self.batch_size, self.n_slots , self.m_depth), name='main_memory')*0.042 ``` Where are the 0.42 and 0.042 from? Thanks