-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use full matrix instead of lower cholesky in AdaptiveMHTuner
- Loading branch information
1 parent
f640fbc
commit d0ce010
Showing
3 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We do not want to use the full matrix. It's numerically more expensive (especially in cases where we have to invert it for a reverse transform later). Log-abs-det-jacobian calculation is also very costly for a full matrix. We should definitely only use triangular matrices (or diagonal, e.g. for high-dim HMC later).