Commit 79064f03 authored by rusty1s's avatar rusty1s
Browse files

typo

parent 0176ecd8
...@@ -38,7 +38,7 @@ output = spline_conv(src, edge_index, pseudo, weight, kernel_size, ...@@ -38,7 +38,7 @@ output = spline_conv(src, edge_index, pseudo, weight, kernel_size,
is_open_spline, degree=1, root_weight=None, bias=None) is_open_spline, degree=1, root_weight=None, bias=None)
``` ```
Applies the spline-based convolutional operator Applies the spline-based convolution operator
<p align="center"> <p align="center">
<img width="50%" src="https://user-images.githubusercontent.com/6945922/38684093-36d9c52e-3e6f-11e8-9021-db054223c6b9.png" /> <img width="50%" src="https://user-images.githubusercontent.com/6945922/38684093-36d9c52e-3e6f-11e8-9021-db054223c6b9.png" />
</p> </p>
......
...@@ -17,7 +17,7 @@ def spline_conv(src, ...@@ -17,7 +17,7 @@ def spline_conv(src,
degree=1, degree=1,
root_weight=None, root_weight=None,
bias=None): bias=None):
"""Applies the spline-based convolutional operator :math:`(f \star g)(i) = """Applies the spline-based convolution operator :math:`(f \star g)(i) =
\frac{1}{|\mathcal{N}(i)|} \sum_{l=1}^{M_{in}} \sum_{j \in \mathcal{N}(i)} \frac{1}{|\mathcal{N}(i)|} \sum_{l=1}^{M_{in}} \sum_{j \in \mathcal{N}(i)}
f_l(j) \cdot g_l(u(i, j))` over several node features of an input graph. f_l(j) \cdot g_l(u(i, j))` over several node features of an input graph.
Here, :math:`g_l` denotes the kernel function defined over the weighted Here, :math:`g_l` denotes the kernel function defined over the weighted
......
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