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
5df8f748
Commit
5df8f748
authored
5 years ago
by
Gregory Ashton
Browse files
Options
Downloads
Patches
Plain Diff
Resolve
#425
: patch to work with emcee3.0
parent
a9bf5dc4
No related branches found
No related tags found
1 merge request
!636
Collection of fixes to resolve issues with testing
Pipeline
#86907
failed
5 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/core/sampler/emcee.py
+15
-7
15 additions, 7 deletions
bilby/core/sampler/emcee.py
with
15 additions
and
7 deletions
bilby/core/sampler/emcee.py
+
15
−
7
View file @
5df8f748
...
...
@@ -57,6 +57,8 @@ class Emcee(MCMCSampler):
pos0
=
None
,
nburn
=
None
,
burn_in_fraction
=
0.25
,
resume
=
True
,
burn_in_act
=
3
,
**
kwargs
):
import
emcee
self
.
emcee
=
emcee
if
LooseVersion
(
emcee
.
__version__
)
>
LooseVersion
(
'
2.2.1
'
):
self
.
prerelease
=
True
else
:
...
...
@@ -93,8 +95,8 @@ class Emcee(MCMCSampler):
@property
def
sampler_function_kwargs
(
self
):
import
emcee
keys
=
[
'
lnprob0
'
,
'
rstate0
'
,
'
blobs0
'
,
'
iterations
'
,
'
thin
'
,
'
storechain
'
,
'
mh_proposal
'
]
keys
=
[
'
lnprob0
'
,
'
rstate0
'
,
'
blobs0
'
,
'
iterations
'
,
'
thin
'
,
'
storechain
'
,
'
mh_proposal
'
]
# updated function keywords for emcee > v2.2.1
updatekeys
=
{
'
p0
'
:
'
initial_state
'
,
...
...
@@ -107,7 +109,8 @@ class Emcee(MCMCSampler):
if
self
.
prerelease
:
if
function_kwargs
[
'
mh_proposal
'
]
is
not
None
:
logger
.
warning
(
"
The
'
mh_proposal
'
option is no longer used
"
"
in emcee v{}, and will be ignored.
"
.
format
(
emcee
.
__version__
))
"
in emcee v{}, and will be ignored.
"
.
format
(
self
.
emcee
.
__version__
))
del
function_kwargs
[
'
mh_proposal
'
]
for
key
in
updatekeys
:
...
...
@@ -259,8 +262,7 @@ class Emcee(MCMCSampler):
sys
.
exit
()
def
_initialise_sampler
(
self
):
import
emcee
self
.
_sampler
=
emcee
.
EnsembleSampler
(
**
self
.
sampler_init_kwargs
)
self
.
_sampler
=
self
.
emcee
.
EnsembleSampler
(
**
self
.
sampler_init_kwargs
)
self
.
_init_chain_file
()
@property
...
...
@@ -307,7 +309,10 @@ class Emcee(MCMCSampler):
This is used when loading in a sampler from a pickle file to figure out
how much of the run has already been completed
"""
return
len
(
self
.
sampler
.
blobs
)
try
:
return
len
(
self
.
sampler
.
blobs
)
except
AttributeError
:
return
0
def
_draw_pos0_from_prior
(
self
):
return
np
.
array
(
...
...
@@ -344,7 +349,10 @@ class Emcee(MCMCSampler):
iterations
=
sampler_function_kwargs
.
pop
(
'
iterations
'
)
iterations
-=
self
.
_previous_iterations
sampler_function_kwargs
[
'
p0
'
]
=
self
.
pos0
if
self
.
prerelease
:
sampler_function_kwargs
[
'
initial_state
'
]
=
self
.
pos0
else
:
sampler_function_kwargs
[
'
p0
'
]
=
self
.
pos0
# main iteration loop
for
sample
in
tqdm
(
...
...
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