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!
소스 검색

Add test_graph_conv_parameter_count_01().

master
Stanislaw Adaszewski 3 년 전
부모
커밋
108140b45e
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. +8
    -0
      tests/icosagon/test_convolve.py

+ 8
- 0
tests/icosagon/test_convolve.py 파일 보기

@@ -188,3 +188,11 @@ def test_dropout_graph_conv_activation_dense_03():
def test_dropout_graph_conv_activation_sparse_03():
_test_dropout_graph_conv_activation_03(True)
def test_graph_conv_parameter_count_01():
adj_mat = torch.rand((10, 20)).round()
conv = GraphConv(20, 20, adj_mat)
assert len(list(conv.parameters())) == 1

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