Open spapadim opened 10 years ago
Was just browsing code, noticed that RMSE in characterize.py is backwards: should be sqrt(sum-of-squares/n) not (sum-of-sqrts/n)^2; i.e. line 69 should be "err += math.pow(i-current,2)" and line 73 should be "print .. % math.sqrt(err/count)".
Oops, good point. Thanks.
Was just browsing code, noticed that RMSE in characterize.py is backwards: should be sqrt(sum-of-squares/n) not (sum-of-sqrts/n)^2; i.e. line 69 should be "err += math.pow(i-current,2)" and line 73 should be "print .. % math.sqrt(err/count)".