Skip to content
Snippets Groups Projects
Commit c9bee354 authored by Colm Talbot's avatar Colm Talbot
Browse files

Merge branch 'examples' into 'master'

DOCUMENTATION: Extra Documentation for relative binning fiducial parameter

See merge request !1183
parents 4bd68f40 35927d33
No related branches found
Tags 0.5.0
1 merge request!1183DOCUMENTATION: Extra Documentation for relative binning fiducial parameter
Pipeline #482967 failed
...@@ -23,7 +23,10 @@ class RelativeBinningGravitationalWaveTransient(GravitationalWaveTransient): ...@@ -23,7 +23,10 @@ class RelativeBinningGravitationalWaveTransient(GravitationalWaveTransient):
given some set of parameters given some set of parameters
fiducial_parameters: dict, optional fiducial_parameters: dict, optional
A starting guess for initial parameters of the event for finding the A starting guess for initial parameters of the event for finding the
maximum likelihood (fiducial) waveform. maximum likelihood (fiducial) waveform. These should be specified in
the same parameter basis as the one that sampling is carried out in.
For example, if sampling in `mass_1` and `mass_2`, the fiducial
parameters should also be provided in `mass_1` and `mass_2.`
parameter_bounds: dict, optional parameter_bounds: dict, optional
Dictionary of bounds (lists) for the initial parameters when finding Dictionary of bounds (lists) for the initial parameters when finding
the initial maximum likelihood (fiducial) waveform. the initial maximum likelihood (fiducial) waveform.
......
...@@ -32,6 +32,10 @@ start_time = end_time - duration ...@@ -32,6 +32,10 @@ start_time = end_time - duration
# The fiducial parameters are taken to me the max likelihood sample from the # The fiducial parameters are taken to me the max likelihood sample from the
# posterior sample release of LIGO-Virgo # posterior sample release of LIGO-Virgo
# https://www.gw-openscience.org/eventapi/html/O3_Discovery_Papers/GW190425/ # https://www.gw-openscience.org/eventapi/html/O3_Discovery_Papers/GW190425/
# The fiducial parameters should always be in provided in the same basis as
# the sampling basis. For example, if sampling in `mass_1` and `mass_2` instead of
# `chirp_mass` and `mass_ratio`, the fiducial parameters should also be provided in
# `mass_1` and `mass_2` below.
fiducial_parameters = { fiducial_parameters = {
"a_1": 0.018, "a_1": 0.018,
......
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