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
why self.w_cov = np.linalg.inv(self.w_precision) in fit function?
what's the meaning of w_cov?
why y_var = 1 / self.beta + np.sum(x @ self.w_cov * x, axis=1) in predict function ?
Can anybody give me a clue or some knowledge about this? Thanks
The text was updated successfully, but these errors were encountered:
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
why
self.w_cov = np.linalg.inv(self.w_precision)
infit
function?what's the meaning of
w_cov
?why
y_var = 1 / self.beta + np.sum(x @ self.w_cov * x, axis=1)
inpredict
function ?Can anybody give me a clue or some knowledge about this? Thanks
The text was updated successfully, but these errors were encountered: