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
8b595c2b
Commit
8b595c2b
authored
5 years ago
by
Sylvia Biscoveanu
Committed by
Moritz Huebner
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add catch for empty log_evidence_err array
parent
facebc86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/core/result.py
+4
-1
4 additions, 1 deletion
bilby/core/result.py
with
4 additions
and
1 deletion
bilby/core/result.py
+
4
−
1
View file @
8b595c2b
...
...
@@ -1336,7 +1336,10 @@ class ResultList(list):
else
:
result
.
log_bayes_factor
=
result
.
log_evidence
-
result
.
log_noise_evidence
log_errs
=
[
res
.
log_evidence_err
for
res
in
self
if
np
.
isfinite
(
res
.
log_evidence_err
)]
result
.
log_evidence_err
=
logsumexp
(
2
*
np
.
array
(
log_errs
),
b
=
1.
/
len
(
self
))
if
len
(
log_errs
)
>
0
:
result
.
log_evidence_err
=
logsumexp
(
2
*
np
.
array
(
log_errs
),
b
=
1.
/
len
(
self
))
else
:
result
.
log_evidence_err
=
np
.
nan
result_weights
=
np
.
exp
(
log_evidences
-
np
.
max
(
log_evidences
))
posteriors
=
[]
for
res
,
frac
in
zip
(
self
,
result_weights
):
...
...
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