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!
Browse Source

Add test_model_04().

master
Stanislaw Adaszewski 3 years ago
parent
commit
692f221f82
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      tests/icosagon/test_model.py

+ 16
- 0
tests/icosagon/test_model.py View File

@@ -86,3 +86,19 @@ def test_model_03():
assert len(list(m.seq[2].parameters())) == 1
assert len(list(m.seq[3].parameters())) == 2
# print(list(m.seq[1].parameters()))
def test_model_04():
d = Data()
d.add_node_type('Dummy', 10)
fam = d.add_relation_family('Dummy-Dummy', 0, 0, False)
mat = torch.rand(10, 10).round().to_sparse()
fam.add_relation_type('Dummy Rel 1', mat)
fam.add_relation_type('Dummy Rel 2', mat.clone())
m = Model(d, ratios=TrainValTest(1., 0., 0.))
assert len(list(m.seq[0].parameters())) == 1
assert len(list(m.seq[1].parameters())) == 2
assert len(list(m.seq[2].parameters())) == 2
assert len(list(m.seq[3].parameters())) == 3

Loading…
Cancel
Save