LIAAD/yake

Wrong code in calculating T_rel of a single_word

ymz1124 opened this issue · 0 comments

self.PL = self.WDL / maxTF
self.PR = self.WDR / maxTF
I think the right code is:
self.PL = self.WDL / self.G.in_degree(self.id, weight='TF')
self.PR = self.WDR / self.G.out_degree(self.id, weight='TF')