liyaguang / DCRNN

Implementation of Diffusion Convolutional Recurrent Neural Network in Tensorflow
MIT License
1.18k stars 391 forks source link

A question about the code #80

Open fireppGo opened 1 year ago

fireppGo commented 1 year ago

Sorry, there are some doubts in reading the paper and code. In the dcrnn_cell.py, start on line 161, why is this a concat operation. Is this step reflected in the paper? And how to understand x2 = 2 * tf.sparse_tensor_dense_matmul(support, x1) - x0. To best of my knowledge, diffusion convolution is a summation operation in the paper. And the paper doesn't seem to mention the operation of stacking. Looking forward to your answer, thanks. 1

freesui1984 commented 1 year ago

I have the same question as you. Have you solved it?