pointer-network-tensorflow
pointer-network-tensorflow copied to clipboard
TensorFlow implementation of "Pointer Networks"
Hi, Thanks for your code sharing. But I found there are some problems in layers.index_matrix_to_pairs function: By using the original code, I can't get [[[0, 3], [1, 1], [2, 2]],...
Below is line 40 and line 45 in model.py. The is_training variable is always set to False without changing based on config. ` self.is_training = tf.placeholder_with_default( tf.constant(False, dtype=tf.bool), shape=(), name='is_training'...
In layers.py, can the 'xrange' change to 'range'? We want to use Python3.6