This repository was archived by the owner on Dec 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding doc to explain likelihood marginalization (#69)
* initial commit * making example only marginalize over distance * making it easier to understand
- Loading branch information
Showing
2 changed files
with
77 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
[model] | ||
name = marginalized_gaussian_noise | ||
distance_marginalization = | ||
|
||
[marginalized_prior-distance] | ||
; how to construct prior distribution for distance marginalization | ||
name = uniform | ||
min-distance = 50. | ||
max-distance = 5000. | ||
|
||
[variable_params] | ||
; parameters to vary in inference sampler | ||
tc = | ||
mass1 = | ||
mass2 = | ||
distance = | ||
coa_phase = | ||
inclination = | ||
ra = | ||
dec = | ||
polarization = | ||
|
||
[static_params] | ||
; parameters that do not vary in inference sampler | ||
approximant = SEOBNRv2_ROM_DoubleSpin | ||
f_lower = 28.0 | ||
|
||
[prior-tc] | ||
; how to construct prior distribution | ||
name = uniform | ||
min-tc = 1126259462.2 | ||
max-tc = 1126259462.6 | ||
|
||
[prior-mass1] | ||
; how to construct prior distribution | ||
name = uniform | ||
min-mass1 = 10. | ||
max-mass1 = 80. | ||
|
||
[prior-mass2] | ||
; how to construct prior distribution | ||
name = uniform | ||
min-mass2 = 10. | ||
max-mass2 = 80. | ||
|
||
[prior-distance] | ||
; how to construct prior distribution | ||
name = uniform | ||
min-distance = 10 | ||
max-distance = 500 | ||
|
||
[prior-coa_phase] | ||
; how to construct prior distribution | ||
name = uniform_angle | ||
; uniform_angle defaults to [0,2pi), so we | ||
; don't need to specify anything here | ||
|
||
[prior-inclination] | ||
; how to construct prior distribution | ||
name = sin_angle | ||
|
||
[prior-ra+dec] | ||
; how to construct prior distribution | ||
name = uniform_sky | ||
|
||
[prior-polarization] | ||
; how to construct prior distribution | ||
name = uniform_angle |