Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Diffusion convolution is not found in code #81

Open
freesui1984 opened this issue Aug 3, 2023 · 0 comments
Open

Diffusion convolution is not found in code #81

freesui1984 opened this issue Aug 3, 2023 · 0 comments

Comments

@freesui1984
Copy link

I have a question about the implementation of the paper. Diffusion convolution expressed in Eq.(2) is not found in the code. I only find ChebNet convolution in dcrnn_cell.py as followed:

            for support in self._supports:
                x1 = tf.sparse_tensor_dense_matmul(support, x0)
                x = self._concat(x, x1)

                for k in range(2, self._max_diffusion_step + 1):
                    x2 = 2 * tf.sparse_tensor_dense_matmul(support, x1) - x0
                    x = self._concat(x, x2)
                    x1, x0 = x2, x1

The paper pointed out that ChebNet is only for undirected graphs. So I wonder how to deal with directed graphs with ChebNet convolution. Or what important details am I missing? Could you kindly help me understand the codes?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant