Closed brendanhasz closed 4 years ago
For pf.applications.LinearRegression with heteroskedastic=True, the bias has shape [1, 1]. It should have shape [1, 2] and use the 2nd for the std dev bias - currently the std dev is missing a bias term!
pf.applications.LinearRegression
heteroskedastic=True
[1, 1]
[1, 2]
Fixed by https://github.com/brendanhasz/probflow/commit/e48ef518f1500e9b1735d3ed078c19eea56b35e2
For
pf.applications.LinearRegression
withheteroskedastic=True
, the bias has shape[1, 1]
. It should have shape[1, 2]
and use the 2nd for the std dev bias - currently the std dev is missing a bias term!