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!
Selaa lähdekoodia

test_normalize

master
Stanislaw Adaszewski 4 vuotta sitten
vanhempi
commit
d835b049b0
1 muutettua tiedostoa jossa 25 lisäystä ja 0 poistoa
  1. +25
    -0
      tests/decagon_pytorch/test_normalize.py

+ 25
- 0
tests/decagon_pytorch/test_normalize.py Näytä tiedosto

@@ -0,0 +1,25 @@
import decagon_pytorch.normalize
import decagon.deep.minibatch
import numpy as np
def test_normalize_adjacency_matrix_square():
mx = np.random.rand(10, 10)
mx[mx < .5] = 0
mx = np.ceil(mx)
res_torch = decagon_pytorch.normalize.normalize_adjacency_matrix(mx)
res_tf = decagon.deep.minibatch.EdgeMinibatchIterator.preprocess_graph(None, mx)
assert len(res_torch) == len(res_tf)
for i in range(len(res_torch)):
assert np.all(res_torch[i] == res_tf[i])
def test_normalize_adjacency_matrix_nonsquare():
mx = np.random.rand(5, 10)
mx[mx < .5] = 0
mx = np.ceil(mx)
res_torch = decagon_pytorch.normalize.normalize_adjacency_matrix(mx)
res_tf = decagon.deep.minibatch.EdgeMinibatchIterator.preprocess_graph(None, mx)
assert len(res_torch) == len(res_tf)
for i in range(len(res_torch)):
assert np.all(res_torch[i] == res_tf[i])

Loading…
Peruuta
Tallenna