GibbsLDApy icon indicating copy to clipboard operation
GibbsLDApy copied to clipboard

code

Open tzshun opened this issue 5 years ago • 1 comments

in model.py line 798, the code ' for k in range(self.K) :' has a little problem。 k should start at 1,not 0. the corrected code is ' for k in range(1,self.K) :' . otherwise the result is inaccurate

tzshun avatar Jul 04 '20 11:07 tzshun

yes, thank you for that

jasperyang avatar Aug 06 '20 01:08 jasperyang