ctgk / PRML

PRML algorithms implemented in Python
MIT License
11.43k stars 3.25k forks source link

question about BayesianRegression #42

Open Keneyr opened 10 months ago

Keneyr commented 10 months ago

why self.w_cov = np.linalg.inv(self.w_precision) in fitfunction? what's the meaning of w_cov? why y_var = 1 / self.beta + np.sum(x @ self.w_cov * x, axis=1) in predictfunction ?

Can anybody give me a clue or some knowledge about this? Thanks

said-ml commented 8 months ago

for the first question in statistic covariance matrix is inverse of precision matrix, as python code within in class (we access to argument through self) and using inv method from the package numpy.linalg we can write self.w_cov = np.linalg.inv(self.w_precision) in fit function because over all the because (at lest most of it the objective is to find out the weights )and the implementation direct of the result of the prdictive distribution page 156 equation (3-59) where here we take the basis function phi(X)=X