Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fd7bb08
Add a fisher-information-matrix sampler
GregoryAshton Apr 3, 2025
4dfa98f
Revert change
GregoryAshton Apr 3, 2025
8cf5808
Remove old example
GregoryAshton Apr 3, 2025
e5064cc
Improve the example
GregoryAshton Apr 3, 2025
69470fd
Improve the docstring
GregoryAshton Apr 3, 2025
b44f532
Improve example: add units
GregoryAshton Apr 3, 2025
e79639f
Improvemens to FIM and the sampler
GregoryAshton Apr 14, 2025
bdb59f4
Clean up of the method
GregoryAshton Apr 15, 2025
40ff442
Clean up implementation
GregoryAshton Apr 16, 2025
d3b78ab
Further clean up
GregoryAshton Apr 16, 2025
78a49ba
Include full posterior reweighting
GregoryAshton Apr 16, 2025
49f2b5a
Apply correction to out-of-prior samples
GregoryAshton Apr 17, 2025
87a337d
Refactor and clean up
GregoryAshton Apr 22, 2025
a0d0cec
Add option to use the injection for the maximum likelihood initialisa…
GregoryAshton Apr 23, 2025
f5c4d19
Reformat the code to enable alternative resampling approaches
GregoryAshton Apr 23, 2025
680380e
Add importance sampling methods
GregoryAshton Apr 23, 2025
1088a20
Add method to utilise array method if possible
GregoryAshton Apr 23, 2025
cb099ca
Improve error messages
GregoryAshton Apr 23, 2025
6fa3646
Refactor and rename
GregoryAshton Apr 23, 2025
bf4cf82
Add batch sampling
GregoryAshton Apr 23, 2025
8214c9a
Apply black to fisher files
GregoryAshton Apr 23, 2025
6386d46
Add option to fail on errors or continue
GregoryAshton Apr 23, 2025
872d626
Add the weights to the diagnostic plot
GregoryAshton Apr 24, 2025
c4eacc0
Apply conversion to the antenae pattern function calculation
GregoryAshton Apr 24, 2025
778cb25
Fix bug with sorted dataframes passed in to generate_sky_frame_parame…
GregoryAshton Apr 24, 2025
d1fabc6
Resolve bug in which for zero-spin aligned models the generation failed
GregoryAshton Apr 24, 2025
ab25090
Add a new conversion for psi mod pi/2 to remove degenerate solutions
GregoryAshton Apr 24, 2025
2b86616
Add empty expected outputs
GregoryAshton Apr 24, 2025
538da66
Fix minor bus
GregoryAshton Apr 26, 2025
0a73a88
Clean ups
GregoryAshton May 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bilby/bilby_mcmc/proposals.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from scipy.spatial.distance import jensenshannon
from scipy.stats import gaussian_kde

from ..core.fisher import FisherMatrixPosteriorEstimator
from ..core.fisher_matrix import FisherMatrixPosteriorEstimator
from ..core.prior import PriorDict
from ..core.sampler.base_sampler import SamplerError
from ..core.utils import logger, random, reflect
Expand Down
2 changes: 1 addition & 1 deletion bilby/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from . import grid, likelihood, prior, result, sampler, series, utils, fisher
from . import grid, likelihood, prior, result, sampler, series, utils, fisher_matrix, fisher_sampler
174 changes: 0 additions & 174 deletions bilby/core/fisher.py

This file was deleted.

Loading