You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I notice that in your paper these is a formular stated like this :$A_{ij}=exp(-\frac{2D_{ij}^2}{\Delta})$. But in your repo, the corresponding code is np.exp(-dis_vec[0, node_idx] ** 2 / (m_prob * avg_dis) ** 2) , seems like computing $A_{ij}=exp(-\frac{D_{ij}^4}{\Delta})$. Could please explain it's this or mistake or i misundersood your code ?
The text was updated successfully, but these errors were encountered:
Hi, I notice that in your paper these is a formular stated like this :$A_{ij}=exp(-\frac{2D_{ij}^2}{\Delta})$. But in your repo, the corresponding code is$A_{ij}=exp(-\frac{D_{ij}^4}{\Delta})$ . Could please explain it's this or mistake or i misundersood your code ?
np.exp(-dis_vec[0, node_idx] ** 2 / (m_prob * avg_dis) ** 2)
, seems like computingThe text was updated successfully, but these errors were encountered: