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!
ソースを参照

Remove an extra newline.

master
Stanislaw Adaszewski 3年前
コミット
6cf3175950
1個のファイルの変更0行の追加1行の削除
  1. +0
    -1
      src/icosagon/convolve.py

+ 0
- 1
src/icosagon/convolve.py ファイルの表示

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


読み込み中…
キャンセル
保存