You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)".
The text was updated successfully, but these errors were encountered:
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)".
The text was updated successfully, but these errors were encountered: