dmn-tensorflow
dmn-tensorflow copied to clipboard
Dynamic Memory Networks (https://arxiv.org/abs/1603.01417) in Tensorflow
Please how to solve this problem. It seems complicated. ValueError: Variable DMN/Episodic/Layer0/AttnGate/AttrGRU/Gates/Linear1/BatchNorm/DMN/Episodic/Layer0/AttnGate/AttrGRU_1/Gates/Linear1/BatchNorm/moments/Squeeze/ExponentialMovingAverage/ does not exist, or was not created with tf.get_variable(). Did you mean to set reuse=tf.AUTO_REUSE in VarScope?

Would you be able to report the result on the 1k dataset as well? DMN+ paper doesn't report the 1k result so I was always wondering.. Thanks for great work!
Hi! It looks like you're using tensorflow 0.8 and not 1.0 https://www.tensorflow.org/install/migration Your code does not work with tensorflow v. 1.0! Just saying ;) I suggest you to modify your...
First of all, i am excited to see this awesome implementation, your code is easy to read ! ValueError: Variable DMN/Episodic/Layer0/AttnGate/AttrGRU/Gates/Linear1/BatchNorm/DMN/Episodic/Layer0/AttnGate/AttrGRU_1/Gates/Linear1/BatchNorm/cond/DMN/Episodic/Layer0/AttnGate/AttrGRU_1/Gates/Linear1/BatchNorm/moments/normalize/mean/ExponentialMovingAverage/biased does not exist, or was not created with tf.get_variable()....
Hi, first of all, thank you very much for the code, I learnt a lot! In models/new/episode_module.py, line 59, l2 = tf.nn.softmax(l2) is performed on batch/N dimension but in paper...
In the input module how to embed the information that coming from the context? In some papers it has mentioned The will concatenate all the words in the context and...
I run into the following problem. My env Python 3.6, Tensorflow 0.12 WARNING:tensorflow:From ./main.py:79 in main.: initialize_all_variables (from tensorflow.python.ops.variables) is deprecated and will be removed after 2017-03-02. Instructions for updating:...
Hi, I simply run the code by `./main.py --task 1` and error occurred. ``` Traceback (most recent call last): File "./main.py", line 7, in from read_data import read_babi, get_max_sizes File...