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
d94e4f62
Commit
d94e4f62
authored
5 years ago
by
Moritz Huebner
Browse files
Options
Downloads
Plain Diff
Merge branch 'persistent-dynesty-sampling-time' into 'master'
Resolve sampling_time persistence between restarts for dynesty Closes
#378
See merge request
!519
parents
bfd7510e
581775da
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!519
Resolve sampling_time persistence between restarts for dynesty
Pipeline
#67234
passed with warnings
5 years ago
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bilby/core/sampler/__init__.py
+7
-4
7 additions, 4 deletions
bilby/core/sampler/__init__.py
bilby/core/sampler/dynesty.py
+10
-1
10 additions, 1 deletion
bilby/core/sampler/dynesty.py
with
17 additions
and
5 deletions
bilby/core/sampler/__init__.py
+
7
−
4
View file @
d94e4f62
...
...
@@ -163,15 +163,18 @@ def run_sampler(likelihood, priors=None, label='label', outdir='outdir',
return
sampler
.
cached_result
start_time
=
datetime
.
datetime
.
now
()
if
command_line_args
.
bilby_test_mode
:
result
=
sampler
.
_run_test
()
else
:
result
=
sampler
.
run_sampler
()
end_time
=
datetime
.
datetime
.
now
()
result
.
sampling_time
=
(
end_time
-
start_time
).
total_seconds
()
logger
.
info
(
'
Sampling time: {}
'
.
format
(
end_time
-
start_time
))
# Some samplers calculate the sampling time internally
if
result
.
sampling_time
is
None
:
result
.
sampling_time
=
end_time
-
start_time
logger
.
info
(
'
Sampling time: {}
'
.
format
(
result
.
sampling_time
))
# Convert sampling time into seconds
result
.
sampling_time
=
result
.
sampling_time
.
total_seconds
()
if
sampler
.
use_ratio
:
result
.
log_noise_evidence
=
likelihood
.
noise_log_likelihood
()
...
...
This diff is collapsed.
Click to expand it.
bilby/core/sampler/dynesty.py
+
10
−
1
View file @
d94e4f62
from
__future__
import
absolute_import
import
datetime
import
os
import
sys
import
pickle
...
...
@@ -116,6 +117,7 @@ class Dynesty(NestedSampler):
logger
.
info
(
"
Checkpoint every n_check_point = {}
"
.
format
(
self
.
n_check_point
))
self
.
resume_file
=
'
{}/{}_resume.pickle
'
.
format
(
self
.
outdir
,
self
.
label
)
self
.
sampling_time
=
datetime
.
timedelta
()
signal
.
signal
(
signal
.
SIGTERM
,
self
.
write_current_state_and_exit
)
signal
.
signal
(
signal
.
SIGINT
,
self
.
write_current_state_and_exit
)
...
...
@@ -245,6 +247,7 @@ class Dynesty(NestedSampler):
self
.
calc_likelihood_count
()
self
.
result
.
log_evidence
=
out
.
logz
[
-
1
]
self
.
result
.
log_evidence_err
=
out
.
logzerr
[
-
1
]
self
.
result
.
sampling_time
=
self
.
sampling_time
if
self
.
plot
:
self
.
generate_trace_plots
(
out
)
...
...
@@ -267,6 +270,7 @@ class Dynesty(NestedSampler):
sampler_kwargs
=
self
.
sampler_function_kwargs
.
copy
()
sampler_kwargs
[
'
maxcall
'
]
=
self
.
n_check_point
sampler_kwargs
[
'
add_live
'
]
=
False
self
.
start_time
=
datetime
.
datetime
.
now
()
while
True
:
sampler_kwargs
[
'
maxcall
'
]
+=
self
.
n_check_point
self
.
sampler
.
run_nested
(
**
sampler_kwargs
)
...
...
@@ -276,7 +280,6 @@ class Dynesty(NestedSampler):
self
.
write_current_state
()
self
.
read_saved_state
()
sampler_kwargs
[
'
add_live
'
]
=
True
self
.
sampler
.
run_nested
(
**
sampler_kwargs
)
return
self
.
sampler
.
results
...
...
@@ -340,6 +343,7 @@ class Dynesty(NestedSampler):
self
.
sampler
.
live_bound
=
saved
[
'
live_bound
'
]
self
.
sampler
.
live_it
=
saved
[
'
live_it
'
]
self
.
sampler
.
added_live
=
saved
[
'
added_live
'
]
self
.
sampling_time
+=
datetime
.
timedelta
(
seconds
=
saved
[
'
sampling_time
'
])
return
True
else
:
...
...
@@ -371,6 +375,10 @@ class Dynesty(NestedSampler):
check_directory_exists_and_if_not_mkdir
(
self
.
outdir
)
logger
.
info
(
"
Writing checkpoint file {}
"
.
format
(
self
.
resume_file
))
end_time
=
datetime
.
datetime
.
now
()
self
.
sampling_time
+=
end_time
-
self
.
start_time
self
.
start_time
=
end_time
current_state
=
dict
(
unit_cube_samples
=
self
.
sampler
.
saved_u
,
physical_samples
=
self
.
sampler
.
saved_v
,
...
...
@@ -386,6 +394,7 @@ class Dynesty(NestedSampler):
boundidx
=
self
.
sampler
.
saved_boundidx
,
bounditer
=
self
.
sampler
.
saved_bounditer
,
scale
=
self
.
sampler
.
saved_scale
,
sampling_time
=
self
.
sampling_time
.
total_seconds
()
)
current_state
.
update
(
...
...
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