Guest User

Untitled

a guest
Feb 16th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. adj_k_prob = adj_prob
  2. for i in range(K):
  3. adj_k_prob += np.matmul(adj_prob, adj_k_prob)
  4.  
  5. adj_k_prob = adj_prob_tensor
  6. for i in range(K):
  7. adj_k_prob += torch.matmul(adj_prob_tensor, adj_k_prob)
Add Comment
Please, Sign In to add comment