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_dropout_graph_conv_activation_parameter_count_01().

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

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

@@ -196,3 +196,11 @@ def test_graph_conv_parameter_count_01():
conv = GraphConv(20, 20, adj_mat)
assert len(list(conv.parameters())) == 1
def test_dropout_graph_conv_activation_parameter_count_01():
adj_mat = torch.rand((10, 20)).round()
conv = DropoutGraphConvActivation(20, 20, adj_mat)
assert len(list(conv.parameters())) == 1

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