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 \


正在加载...
取消
保存