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
Useful for: Users who want to implement custom predictive approximations.
Issue: Currently, the predictive approximation is tightly coupled with the Laplace class. So, if the user wanted to implement a new predictive approximation, they have to dig deep into this class, and it might break something not to mention that it can be confusing.
Proposal:
2-steps predictive interface (function output and link predictives)
linearized_pred=LinearizedPred()
probit_pred=ProbitPred() # Set it to `None` if one does regressionlaplace_net=Laplace(..., function_predictive=linearized_pred, link_predictive=probit_pred)
laplace_net.fit(train_loader)
laplace_net(x) # Prediction using the specified predictives
The text was updated successfully, but these errors were encountered:
Useful for: Users who want to implement custom predictive approximations.
Issue: Currently, the predictive approximation is tightly coupled with the Laplace class. So, if the user wanted to implement a new predictive approximation, they have to dig deep into this class, and it might break something not to mention that it can be confusing.
Proposal:
The text was updated successfully, but these errors were encountered: