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
352e02f9
Commit
352e02f9
authored
6 years ago
by
Colm Talbot
Browse files
Options
Downloads
Patches
Plain Diff
tune dynesty parameters a little
parent
137a739d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tupak/sampler.py
+4
-2
4 additions, 2 deletions
tupak/sampler.py
with
4 additions
and
2 deletions
tupak/sampler.py
+
4
−
2
View file @
352e02f9
...
...
@@ -44,7 +44,6 @@ class Sampler(object):
self
.
priors
=
priors
self
.
label
=
label
self
.
outdir
=
outdir
self
.
kwargs
=
kwargs
self
.
use_ratio
=
use_ratio
self
.
external_sampler
=
external_sampler
...
...
@@ -53,6 +52,7 @@ class Sampler(object):
self
.
initialise_parameters
()
self
.
verify_parameters
()
self
.
ndim
=
len
(
self
.
__search_parameter_keys
)
self
.
kwargs
=
kwargs
self
.
result
=
result
...
...
@@ -229,7 +229,7 @@ class Dynesty(Sampler):
@kwargs.setter
def
kwargs
(
self
,
kwargs
):
self
.
__kwargs
=
dict
(
dlogz
=
0.1
,
sample
=
'
rwalk
'
,
walks
=
100
,
bound
=
'
multi
'
,
update_interval
=
6000
)
self
.
__kwargs
=
dict
(
dlogz
=
0.1
,
bound
=
'
multi
'
,
sample
=
'
rwalk
'
,
walks
=
self
.
ndim
*
5
)
self
.
__kwargs
.
update
(
kwargs
)
if
'
npoints
'
not
in
self
.
__kwargs
:
for
equiv
in
[
'
nlive
'
,
'
nlives
'
,
'
n_live_points
'
,
'
npoint
'
]:
...
...
@@ -237,6 +237,8 @@ class Dynesty(Sampler):
self
.
__kwargs
[
'
npoints
'
]
=
self
.
__kwargs
.
pop
(
equiv
)
if
'
npoints
'
not
in
self
.
__kwargs
:
self
.
__kwargs
[
'
npoints
'
]
=
10000
if
'
update_interval
'
not
in
self
.
__kwargs
:
self
.
__kwargs
[
'
update_interval
'
]
=
int
(
0.6
*
self
.
__kwargs
[
'
npoints
'
])
def
run_sampler
(
self
):
dynesty
=
self
.
external_sampler
...
...
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