Skip to content

Commit

Permalink
Fix method name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Hale committed Jul 22, 2024
1 parent ca1419b commit c152df3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="sgw_tools",
version="3.0.1",
version="3.0.2",
author="Mark Hale",
license="MIT",
description="Spectral graph wavelet tools",
Expand Down
2 changes: 1 addition & 1 deletion sgw_torch/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,4 @@ def forward(
) -> Tensor:
ys = [lin.weight for lin in self.lins]
ws = self.convert_coefficients(ys)
return self._evaluate_cheb(ws, x, edge_index, edge_weight, batch, lambda_max)
return self._evaluate_chebyshev(ws, x, edge_index, edge_weight, batch, lambda_max)

0 comments on commit c152df3

Please sign in to comment.