GibbsLDApy
GibbsLDApy copied to clipboard
code
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
yes, thank you for that