Unverified Commit aefc080e authored by Adam J. Stewart's avatar Adam J. Stewart Committed by GitHub
Browse files

[Doc] Fix GraphConv math notation (#1430)

parent 1b37545d
...@@ -103,7 +103,7 @@ class GraphConv(gluon.Block): ...@@ -103,7 +103,7 @@ class GraphConv(gluon.Block):
dimensions, :math:`N` is the number of nodes. dimensions, :math:`N` is the number of nodes.
* Output shape: :math:`(N, *, \text{out_feats})` where all but the last dimension are * Output shape: :math:`(N, *, \text{out_feats})` where all but the last dimension are
the same shape as the input. the same shape as the input.
* Weight shape: "math:`(\text{in_feats}, \text{out_feats})`. * Weight shape: :math:`(\text{in_feats}, \text{out_feats})`.
Parameters Parameters
---------- ----------
......
...@@ -109,7 +109,7 @@ class GraphConv(nn.Module): ...@@ -109,7 +109,7 @@ class GraphConv(nn.Module):
dimensions, :math:`N` is the number of nodes. dimensions, :math:`N` is the number of nodes.
* Output shape: :math:`(N, *, \text{out_feats})` where all but the last dimension are * Output shape: :math:`(N, *, \text{out_feats})` where all but the last dimension are
the same shape as the input. the same shape as the input.
* Weight shape: "math:`(\text{in_feats}, \text{out_feats})`. * Weight shape: :math:`(\text{in_feats}, \text{out_feats})`.
Parameters Parameters
---------- ----------
......
...@@ -106,7 +106,7 @@ class GraphConv(layers.Layer): ...@@ -106,7 +106,7 @@ class GraphConv(layers.Layer):
dimensions, :math:`N` is the number of nodes. dimensions, :math:`N` is the number of nodes.
* Output shape: :math:`(N, *, \text{out_feats})` where all but the last dimension are * Output shape: :math:`(N, *, \text{out_feats})` where all but the last dimension are
the same shape as the input. the same shape as the input.
* Weight shape: "math:`(\text{in_feats}, \text{out_feats})`. * Weight shape: :math:`(\text{in_feats}, \text{out_feats})`.
Parameters Parameters
---------- ----------
......
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