The distance decay is applied twice?
Closed this issue · 2 comments
Thank you for making the code public and for your awesome work on the WSDM'23 paper.
After running the code for the public dataset, I have a small concern about the Distance kernel
Lines 101 to 105 in 04d190e
Here is the forward implementation of Geo GCN:
Lines 153 to 166 in 04d190e
So, I am concerned that the decay (-dist_vec ** 2
) is applied twice (in L.101 for the first time and L.160 for the second time). I'm sorry if I misunderstood the implementation, and I am happy to discuss the implementation details if possible.
@cocomoff Thanks for your interest in our work. As you mentioned, there is indeed a problem with the repeated calculation of dist_weight
in the code. This should be due to mixing different versions of module code when releasing the public version. We appreciate you pointing out the issues in the code, and the LBS.py file has now been updated to fix the issue.
@Yifang-Qin Thank you for your quick response and great work! :)