From d608cb3ece77f45f417d85aad257767ac209f206 Mon Sep 17 00:00:00 2001 From: Chengbin HOU <31309465+houchengbin@users.noreply.github.com> Date: Wed, 27 Oct 2021 10:04:27 +0800 Subject: [PATCH] Update comments --- src/libnrl/abrw.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/libnrl/abrw.py b/src/libnrl/abrw.py index e89ed13..ae48330 100644 --- a/src/libnrl/abrw.py +++ b/src/libnrl/abrw.py @@ -1,6 +1,7 @@ """ -ANE method: Adap-ANE: Adaptive Attributed Network Embedding - based on previous Attributed Biased Random Walks https://arxiv.org/abs/1811.11728v2 +ANE method: Robust and Scalable Attributed Network Embedding (RoSANE) for Sparse Networks + https://doi.org/10.1016/j.neucom.2020.05.080 + (based on previous Attributed Biased Random Walks https://arxiv.org/abs/1811.11728v2) by Chengbin Hou & Zeyu Dong 2018 """ @@ -223,4 +224,4 @@ def draw_characteristic_curve(): plt.plot(deg_list, beta_list_3, label='alpha=np.e') plt.plot(deg_list, beta_list_4, label='alpha=10') plt.legend() - plt.show() \ No newline at end of file + plt.show()