Unverified Commit fe44ffe5 authored by Minjie Wang's avatar Minjie Wang Committed by GitHub
Browse files

[Doc] fix equation in nn.conv (#425)

parent dba2a5b6
...@@ -15,7 +15,7 @@ class GraphConv(gluon.Block): ...@@ -15,7 +15,7 @@ class GraphConv(gluon.Block):
and can be described as below: and can be described as below:
.. math:: .. math::
h_i^{(l+1)} = \sigma(b^{(l)} + \sum_{j\in\mathcal{N}(i)}\frac{1}{c_{ij}}W^{(l)}h_j^{(l)}) h_i^{(l+1)} = \sigma(b^{(l)} + \sum_{j\in\mathcal{N}(i)}\frac{1}{c_{ij}}h_j^{(l)}W^{(l)})
where :math:`\mathcal{N}(i)` is the neighbor set of node :math:`i`. :math:`c_{ij}` is equal where :math:`\mathcal{N}(i)` is the neighbor set of node :math:`i`. :math:`c_{ij}` is equal
to the product of the square root of node degrees: to the product of the square root of node degrees:
......
...@@ -16,7 +16,7 @@ class GraphConv(nn.Module): ...@@ -16,7 +16,7 @@ class GraphConv(nn.Module):
and can be described as below: and can be described as below:
.. math:: .. math::
h_i^{(l+1)} = \sigma(b^{(l)} + \sum_{j\in\mathcal{N}(i)}\frac{1}{c_{ij}}W^{(l)}h_j^{(l)}) h_i^{(l+1)} = \sigma(b^{(l)} + \sum_{j\in\mathcal{N}(i)}\frac{1}{c_{ij}}h_j^{(l)}W^{(l)})
where :math:`\mathcal{N}(i)` is the neighbor set of node :math:`i`. :math:`c_{ij}` is equal where :math:`\mathcal{N}(i)` is the neighbor set of node :math:`i`. :math:`c_{ij}` is equal
to the product of the square root of node degrees: to the product of the square root of node degrees:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment