Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
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
Matthew Pitkin
bilby
Commits
89d547c2
Commit
89d547c2
authored
1 year ago
by
Gregory Ashton
Committed by
Christopher Philip Luke Berry
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Minor clean up to the results methods
parent
8ed276d0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bilby/__init__.py
+1
-0
1 addition, 0 deletions
bilby/__init__.py
bilby/core/result.py
+43
-4
43 additions, 4 deletions
bilby/core/result.py
cli_bilby/bilby_result.py
+1
-8
1 addition, 8 deletions
cli_bilby/bilby_result.py
with
45 additions
and
12 deletions
bilby/__init__.py
+
1
−
0
View file @
89d547c2
...
...
@@ -23,6 +23,7 @@ from . import core, gw, hyper
from
.core
import
utils
,
likelihood
,
prior
,
result
,
sampler
from
.core.sampler
import
run_sampler
from
.core.likelihood
import
Likelihood
from
.core.result
import
read_in_result
,
read_in_result_list
try
:
from
._version
import
version
as
__version__
...
...
This diff is collapsed.
Click to expand it.
bilby/core/result.py
+
43
−
4
View file @
89d547c2
...
...
@@ -108,6 +108,34 @@ def read_in_result(filename=None, outdir=None, label=None, extension='json', gzi
return
result
def
read_in_result_list
(
filename_list
,
invalid
=
"
warning
"
):
"""
Read in a set of results
Parameters
==========
filename_list: list
A list of filename paths
invalid: str (ignore, warning, error)
Behaviour if a file in filename_list is not a valid bilby result
Returns
-------
result_list: ResultList
A list of results
"""
results_list
=
[]
for
filename
in
filename_list
:
try
:
results_list
.
append
(
read_in_result
(
filename
=
filename
))
except
Exception
as
e
:
msg
=
f
"
Failed to read in file
{
filename
}
due to exception
{
e
}
"
if
invalid
==
"
error
"
:
raise
ResultListError
(
msg
)
elif
invalid
==
"
warning
"
:
logger
.
warning
(
msg
)
return
ResultList
(
results_list
)
def
get_weights_for_reweighting
(
result
,
new_likelihood
=
None
,
new_prior
=
None
,
old_likelihood
=
None
,
old_prior
=
None
,
resume_file
=
None
,
n_checkpoint
=
5000
,
npool
=
1
):
...
...
@@ -1696,7 +1724,7 @@ class Result(object):
class
ResultList
(
list
):
def
__init__
(
self
,
results
=
None
):
def
__init__
(
self
,
results
=
None
,
consistency_level
=
"
warning
"
):
"""
A class to store a list of :class:`bilby.core.result.Result` objects
from equivalent runs on the same data. This provides methods for
outputting combined results.
...
...
@@ -1705,8 +1733,15 @@ class ResultList(list):
==========
results: list
A list of `:class:`bilby.core.result.Result`.
consistency_level: str, [ignore, warning, error]
If warning, print a warning if inconsistencies are discovered
between the results. If error, raise an error if inconsistencies
are discovered between the results before combining. If ignore, do
nothing.
"""
super
(
ResultList
,
self
).
__init__
()
self
.
consistency_level
=
consistency_level
for
result
in
results
:
self
.
append
(
result
)
...
...
@@ -1737,9 +1772,11 @@ class ResultList(list):
----------
shuffle: bool
If true, shuffle the samples when combining, otherwise they are concatenated.
consistency_level: str, [warning, error]
If warning, print a warning if inconsistencies are discovered between the results before combining.
If error, raise an error if inconsistencies are discovered between the results before combining.
consistency_level: str, [ignore, warning, error]
Overwrite the class level consistency_level. If warning, print a
warning if inconsistencies are discovered between the results. If
error, raise an error if inconsistencies are discovered between
the results before combining. If ignore, do nothing.
Returns
-------
...
...
@@ -1884,6 +1921,8 @@ class ResultList(list):
raise
ResultListError
(
msg
)
elif
self
.
consistency_level
==
"
warning
"
:
logger
.
warning
(
msg
)
elif
self
.
consistency_level
==
"
ignore
"
:
pass
else
:
raise
ValueError
(
f
"
Input consistency_level
{
self
.
consistency_level
}
not understood
"
)
...
...
This diff is collapsed.
Click to expand it.
cli_bilby/bilby_result.py
+
1
−
8
View file @
89d547c2
...
...
@@ -129,13 +129,6 @@ def setup_command_line_args():
return
args
def
read_in_results
(
filename_list
):
results_list
=
[]
for
filename
in
filename_list
:
results_list
.
append
(
bilby
.
core
.
result
.
read_in_result
(
filename
=
filename
))
return
bilby
.
core
.
result
.
ResultList
(
results_list
)
def
print_bayes_factors
(
results_list
):
for
res
in
results_list
:
print
(
f
"
For result
{
res
.
label
}
:
"
)
...
...
@@ -204,7 +197,7 @@ def save(result, args):
def
main
():
args
=
setup_command_line_args
()
results_list
=
read_in_result
s
(
args
.
results
)
results_list
=
bilby
.
core
.
result
.
read_in_result
_list
(
args
.
results
)
if
args
.
save
:
for
result
in
results_list
:
...
...
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