Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby
Commits
33eb97fe
Commit
33eb97fe
authored
3 years ago
by
Moritz Huebner
Browse files
Options
Downloads
Plain Diff
Merge branch '559-check_draw-doesn-t-catch-nan-log_likelihood-values' into 'master'
Resolve "check_draw doesn't catch nan log_likelihood values." Closes
#559
See merge request
!965
parents
315ac28d
3123b4ad
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!965
Resolve "check_draw doesn't catch nan log_likelihood values."
Pipeline
#238376
passed
3 years ago
Stage: initial
Stage: test
Stage: docs
Stage: deploy
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bilby/core/sampler/base_sampler.py
+14
-7
14 additions, 7 deletions
bilby/core/sampler/base_sampler.py
test/core/sampler/base_sampler_test.py
+21
-0
21 additions, 0 deletions
test/core/sampler/base_sampler_test.py
with
35 additions
and
7 deletions
bilby/core/sampler/base_sampler.py
+
14
−
7
View file @
33eb97fe
...
...
@@ -446,6 +446,8 @@ class Sampler(object):
==========
theta: array_like
Parameter values at which to evaluate likelihood
warning: bool
Whether or not to print a warning
Returns
=======
...
...
@@ -453,14 +455,19 @@ class Sampler(object):
True if the likelihood and prior are finite, false otherwise
"""
bad_values
=
[
np
.
inf
,
np
.
nan_to_num
(
np
.
inf
),
np
.
nan
]
if
abs
(
self
.
log_prior
(
theta
))
in
bad_values
:
log_p
=
self
.
log_prior
(
theta
)
log_l
=
self
.
log_likelihood
(
theta
)
return
\
self
.
_check_bad_value
(
val
=
log_p
,
warning
=
warning
,
theta
=
theta
,
label
=
'
prior
'
)
and
\
self
.
_check_bad_value
(
val
=
log_l
,
warning
=
warning
,
theta
=
theta
,
label
=
'
likelihood
'
)
@staticmethod
def
_check_bad_value
(
val
,
warning
,
theta
,
label
):
val
=
np
.
abs
(
val
)
bad_values
=
[
np
.
inf
,
np
.
nan_to_num
(
np
.
inf
)]
if
val
in
bad_values
or
np
.
isnan
(
val
):
if
warning
:
logger
.
warning
(
'
Prior draw {} has inf prior
'
.
format
(
theta
))
return
False
if
abs
(
self
.
log_likelihood
(
theta
))
in
bad_values
:
if
warning
:
logger
.
warning
(
'
Prior draw {} has inf likelihood
'
.
format
(
theta
))
logger
.
warning
(
f
'
Prior draw
{
theta
}
has inf
{
label
}
'
)
return
False
return
True
...
...
This diff is collapsed.
Click to expand it.
test/core/sampler/base_sampler_test.py
+
21
−
0
View file @
33eb97fe
...
...
@@ -98,6 +98,27 @@ class TestSampler(unittest.TestCase):
self
.
sampler
.
run_sampler
()
self
.
assertDictEqual
(
sampler_copy
.
__dict__
,
self
.
sampler
.
__dict__
)
def
test_bad_value_nan
(
self
):
self
.
sampler
.
_check_bad_value
(
val
=
np
.
nan
,
warning
=
False
,
theta
=
None
,
label
=
None
)
def
test_bad_value_np_abs_nan
(
self
):
self
.
sampler
.
_check_bad_value
(
val
=
np
.
abs
(
np
.
nan
),
warning
=
False
,
theta
=
None
,
label
=
None
)
def
test_bad_value_abs_nan
(
self
):
self
.
sampler
.
_check_bad_value
(
val
=
abs
(
np
.
nan
),
warning
=
False
,
theta
=
None
,
label
=
None
)
def
test_bad_value_pos_inf
(
self
):
self
.
sampler
.
_check_bad_value
(
val
=
np
.
inf
,
warning
=
False
,
theta
=
None
,
label
=
None
)
def
test_bad_value_neg_inf
(
self
):
self
.
sampler
.
_check_bad_value
(
val
=-
np
.
inf
,
warning
=
False
,
theta
=
None
,
label
=
None
)
def
test_bad_value_pos_inf_nan_to_num
(
self
):
self
.
sampler
.
_check_bad_value
(
val
=
np
.
nan_to_num
(
np
.
inf
),
warning
=
False
,
theta
=
None
,
label
=
None
)
def
test_bad_value_neg_inf_nan_to_num
(
self
):
self
.
sampler
.
_check_bad_value
(
val
=
np
.
nan_to_num
(
-
np
.
inf
),
warning
=
False
,
theta
=
None
,
label
=
None
)
if
__name__
==
"
__main__
"
:
unittest
.
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment