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
# calling bayesian_fit in `bayesian_linear_regression`returnbayesian_fit(A, Y;
variance_c_floor = sig_0_floor * sig_0_floor,
variance_e_floor = sig_e_floor * sig_e_floor,
verbose = verbose)
# some code in between ...functionbayesian_fit(...)
C =solve(y, X, var_c, var_e)
returnDict("C"=> C)
Seems that committee is not returned when we use Cholesky factorization for the BLR solver. Maybe worth a warning so that the users aware? It took me some time to look into the code and figure out why the committee is not return even if committee_size > 0.
The text was updated successfully, but these errors were encountered:
Seems that committee is not returned when we use Cholesky factorization for the BLR solver. Maybe worth a warning so that the users aware? It took me some time to look into the code and figure out why the committee is not return even if
committee_size > 0
.The text was updated successfully, but these errors were encountered: