Skip to content
Snippets Groups Projects
Commit 8679c5c4 authored by Moritz Huebner's avatar Moritz Huebner
Browse files

Merge branch 'fix-interpolation-ordering' into 'master'

fix ordering after interpolation

See merge request lscsoft/bilby!301
parents 8eb6fb57 c09ecc30
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ import inspect
import subprocess
import numpy as np
from scipy.interpolate import interp2d
logger = logging.getLogger('bilby')
......@@ -692,6 +693,19 @@ def run_commandline(cl, log_level=20, raise_error=True, return_output=True):
process.communicate()
class UnsortedInterp2d(interp2d):
"""
Wrapper to scipy.interpolate.interp2d which preserves the input ordering.
See https://stackoverflow.com/questions/44941271/scipy-interp2d-returned-function-sorts-input-argument-automatically-and-undesira
for the implementation details.
"""
def __call__(self, x, y, dx=0, dy=0):
unsorted_idxs = np.argsort(np.argsort(x))
return interp2d.__call__(self, x, y, dx=dx, dy=dy)[unsorted_idxs]
# Instantiate the default argument parser at runtime
command_line_args, command_line_parser = set_up_command_line_arguments()
# Instantiate the default logging
......
from __future__ import division
import numpy as np
from scipy.interpolate import interp2d, interp1d
from scipy.interpolate import interp1d
try:
from scipy.special import logsumexp
......@@ -9,7 +9,7 @@ except ImportError:
from scipy.special import i0e
from ..core import likelihood
from ..core.utils import logger
from ..core.utils import logger, UnsortedInterp2d
from ..core.prior import Prior, Uniform
from .detector import InterferometerList
from .prior import BBHPriorDict
......@@ -182,13 +182,11 @@ class GravitationalWaveTransient(likelihood.Likelihood):
if self.phase_marginalization:
dist_marged_log_l_tc_array = self._interp_dist_margd_loglikelihood(
abs(rho_mf_ref_tc_array), rho_opt_ref)
log_l = logsumexp(dist_marged_log_l_tc_array,
b=self.time_prior_array)
else:
dist_marged_log_l_tc_array = self._interp_dist_margd_loglikelihood(
rho_mf_ref_tc_array.real, rho_opt_ref)
log_l = logsumexp(dist_marged_log_l_tc_array,
b=self.time_prior_array)
log_l = logsumexp(dist_marged_log_l_tc_array,
b=self.time_prior_array)
elif self.phase_marginalization:
log_l = logsumexp(self._bessel_function_interped(abs(
matched_filter_snr_squared_tc_array)),
......@@ -249,8 +247,9 @@ class GravitationalWaveTransient(likelihood.Likelihood):
def _setup_distance_marginalization(self):
self._create_lookup_table()
self._interp_dist_margd_loglikelihood = interp2d(self._rho_mf_ref_array, self._rho_opt_ref_array,
self._dist_margd_loglikelihood_array)
self._interp_dist_margd_loglikelihood = UnsortedInterp2d(
self._rho_mf_ref_array, self._rho_opt_ref_array,
self._dist_margd_loglikelihood_array)
def _create_lookup_table(self):
""" Make the lookup table """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment