IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

Remove an extra newline.

master
Stanislaw Adaszewski 3 years ago
parent
commit
6cf3175950
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      src/icosagon/convolve.py

+ 0
- 1
src/icosagon/convolve.py View File

@@ -20,7 +20,6 @@ class GraphConv(torch.nn.Module):
self.weight = torch.nn.Parameter(init_glorot(in_channels, out_channels))
self.adjacency_matrix = adjacency_matrix
def forward(self, x: torch.Tensor) -> torch.Tensor:
x = torch.sparse.mm(x, self.weight) \
if x.is_sparse \


Loading…
Cancel
Save