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 \


불러오는 중...
취소
저장