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!
Parcourir la source

Remove an extra newline.

master
Stanislaw Adaszewski il y a 3 ans
Parent
révision
6cf3175950
1 fichiers modifiés avec 0 ajouts et 1 suppressions
  1. +0
    -1
      src/icosagon/convolve.py

+ 0
- 1
src/icosagon/convolve.py Voir le fichier

@@ -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 \


Chargement…
Annuler
Enregistrer