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
e90a156e
Commit
e90a156e
authored
6 years ago
by
Rhys Green
Browse files
Options
Downloads
Patches
Plain Diff
adding changes so you can provide step without step_kwargs every time
parent
80ee2d12
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!299
Fixing some argument bugs in pymc3.py.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/core/sampler/pymc3.py
+11
-5
11 additions, 5 deletions
bilby/core/sampler/pymc3.py
with
11 additions
and
5 deletions
bilby/core/sampler/pymc3.py
+
11
−
5
View file @
e90a156e
...
...
@@ -62,12 +62,12 @@ class Pymc3(MCMCSampler):
live_plot_kwargs
=
None
,
compute_convergence_checks
=
True
,
use_mmap
=
False
)
def
__init__
(
self
,
likelihood
,
priors
,
outdir
=
'
outdir
'
,
label
=
'
label
'
,
use_ratio
=
False
,
plot
=
False
,
draws
=
1000
,
use_ratio
=
False
,
plot
=
False
,
skip_import_verification
=
False
,
**
kwargs
):
Sampler
.
__init__
(
self
,
likelihood
,
priors
,
outdir
=
outdir
,
label
=
label
,
use_ratio
=
use_ratio
,
plot
=
plot
,
skip_import_verification
=
skip_import_verification
,
**
kwargs
)
self
.
draws
=
draws
self
.
draws
=
self
.
__kwargs
[
'
draws
'
]
self
.
chains
=
self
.
__kwargs
[
'
chains
'
]
@staticmethod
...
...
@@ -401,7 +401,7 @@ class Pymc3(MCMCSampler):
sms
=
self
.
step_method
[
key
]
else
:
sms
=
[
self
.
step_method
[
key
]]
print
(
sms
)
for
sm
in
sms
:
if
sm
.
lower
()
not
in
step_methods
:
raise
ValueError
(
"
Using invalid step method
'
{}
'"
.
format
(
self
.
step_method
[
key
]))
...
...
@@ -454,10 +454,16 @@ class Pymc3(MCMCSampler):
if
curmethod
==
'
nuts
'
:
if
nuts_kwargs
is
not
None
:
args
=
nuts_kwargs
el
s
e
:
el
if
step_kwargs
is
not
Non
e
:
args
=
step_kwargs
.
get
(
'
nuts
'
,
{})
else
:
args
=
{}
else
:
args
=
step_kwargs
.
get
(
curmethod
,
{})
if
step_kwargs
is
not
None
:
args
=
step_kwargs
.
get
(
curmethod
,
{})
print
(
args
)
else
:
args
=
{}
self
.
kwargs
[
'
step
'
].
append
(
pymc3
.
__dict__
[
step_methods
[
curmethod
]](
vars
=
[
self
.
pymc3_priors
[
key
]],
**
args
))
else
:
with
self
.
pymc3_model
:
...
...
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