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
bf9156e1
Commit
bf9156e1
authored
6 years ago
by
Matthew Pitkin
Browse files
Options
Downloads
Patches
Plain Diff
Add evidence uncertainty estimate to cpnest results output
parent
5f5879cd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!420
Add evidence uncertainty estimate to cpnest results output
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/core/sampler/cpnest.py
+1
-1
1 addition, 1 deletion
bilby/core/sampler/cpnest.py
with
1 addition
and
1 deletion
bilby/core/sampler/cpnest.py
+
1
−
1
View file @
bf9156e1
...
...
@@ -89,7 +89,7 @@ class Cpnest(NestedSampler):
self
.
result
.
posterior
.
rename
(
columns
=
dict
(
logL
=
'
log_likelihood
'
,
logPrior
=
'
log_prior
'
),
inplace
=
True
)
self
.
result
.
log_evidence
=
out
.
NS
.
state
.
logZ
self
.
result
.
log_evidence_err
=
np
.
nan
self
.
result
.
log_evidence_err
=
np
.
sqrt
(
out
.
NS
.
state
.
info
/
out
.
NS
.
state
.
nlive
)
return
self
.
result
def
_verify_kwargs_against_default_kwargs
(
self
):
...
...
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