pointer-network-tensorflow icon indicating copy to clipboard operation
pointer-network-tensorflow copied to clipboard

TensorFlow implementation of "Pointer Networks"

Results 13 pointer-network-tensorflow issues
Sort by recently updated
recently updated
newest added

In my test, this project need the api version 1.0 for tensorflow. The ReadMe file need to update this information for user's convenience. Thanks

hi,because in the code, all data has been filled with zeros, then seq_length = tf.shape(inputs)[0] should be the same, I think it should be calculated after removing all zero rows?

line 179 i think losses should be inference_losses

with the program , l can train my data, but l can't test my data, It has a RuntimeError: Coordinator stopped with threads still running: Thread-11 Thread-12...can you give me...

Did anyone get a working version of this? Which version of tensorflow did you use and which adaptions did you make?

File "xxx/project/PycharmProjects/seq2sql/pointer-network/pointer-network-tensorflow/layers.py", line 22, in dynamic_rnn_decoder = tf.contrib.seq2seq.dynamic_rnn_decoder AttributeError: 'module' object has no attribute 'dynamic_rnn_decoder' >>> print tensorflow.__version__ 1.0.0

the comment is:[[3,1,2], [2,3,1]] -> [[[0, 3], [1, 1], [2, 2]], [[0, 2], [1, 3], [2, 1]]] but when I test it, it output this:[[[0 3],[0 1],[0 2]],[[1 2],[1 3],[1...

Hi, I am reading the pointer-network codes. However, I have a question in model.py file. In model.py, line 133-134, you gathered enc_output into dec_inputs. But in the original paper, it...

bug

When I run the main.py, getting the following errors: Traceback (most recent call last): File "main.py", line 5, in from trainer import Trainer File "/Users/peng.huangp/github/pointer-network-tensorflow/trainer.py", line 7, in from model...