Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wangruohan111 committed Mar 26, 2023
1 parent dcf1fb1 commit 354a519
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Scripts/call_cn.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ def make_adj_matrix(matrix, K, sigma):
temp = temp[-K:]
adj_matrix[i][j] = np.exp(-np.sum(temp)/sigma**2)
adj_matrix[j][i] = np.exp(-np.sum(temp)/sigma**2)
adj_matrix = KR_norm_juicer.KR_norm(adj_matrix)

adj_matrix = KR_norm_juicer.KR_norm(adj_matrix)

return adj_matrix

Expand Down

0 comments on commit 354a519

Please sign in to comment.