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
95f57d81
Commit
95f57d81
authored
6 years ago
by
Sylvia Biscoveanu
Committed by
Colm Talbot
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Shortening the pymultinest output directory name and adding a warning if the…
parent
b5396cca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
test/sampler_test.py
+2
-2
2 additions, 2 deletions
test/sampler_test.py
tupak/core/sampler/pymultinest.py
+17
-2
17 additions, 2 deletions
tupak/core/sampler/pymultinest.py
with
20 additions
and
4 deletions
CHANGELOG.md
+
1
−
0
View file @
95f57d81
...
...
@@ -43,6 +43,7 @@ re-instantiate the Prior in most cases
-
Users can now choose to overwrite existing result files, rather than creating
a .old file.
-
Make likelihood values stored in the posterior correct for dynesty and nestle
-
pymultinest output now stored in {outdir}/pm_{label}/
### Removed
-
Removes the "--detectors" command line argument (not a general CLI requirement)
...
...
This diff is collapsed.
Click to expand it.
test/sampler_test.py
+
2
−
2
View file @
95f57d81
...
...
@@ -360,7 +360,7 @@ class TestPymultinest(unittest.TestCase):
def
test_default_kwargs
(
self
):
expected
=
dict
(
importance_nested_sampling
=
False
,
resume
=
True
,
verbose
=
True
,
sampling_efficiency
=
'
parameter
'
,
outputfiles_basename
=
'
outdir/p
ymultinest
_label/
'
,
outputfiles_basename
=
'
outdir/p
m
_label/
'
,
n_live_points
=
500
,
n_params
=
None
,
n_clustering_params
=
None
,
wrapped_params
=
None
,
multimodal
=
True
,
const_efficiency_mode
=
False
,
...
...
@@ -374,7 +374,7 @@ class TestPymultinest(unittest.TestCase):
def
test_translate_kwargs
(
self
):
expected
=
dict
(
importance_nested_sampling
=
False
,
resume
=
True
,
verbose
=
True
,
sampling_efficiency
=
'
parameter
'
,
outputfiles_basename
=
'
outdir/p
ymultinest
_label/
'
,
outputfiles_basename
=
'
outdir/p
m
_label/
'
,
n_live_points
=
123
,
n_params
=
None
,
n_clustering_params
=
None
,
wrapped_params
=
None
,
multimodal
=
True
,
const_efficiency_mode
=
False
,
...
...
This diff is collapsed.
Click to expand it.
tupak/core/sampler/pymultinest.py
+
17
−
2
View file @
95f57d81
...
...
@@ -2,6 +2,7 @@ from __future__ import absolute_import
from
..utils
import
check_directory_exists_and_if_not_mkdir
from
.base_sampler
import
NestedSampler
from
tupak.core.utils
import
logger
class
Pymultinest
(
NestedSampler
):
...
...
@@ -48,12 +49,26 @@ class Pymultinest(NestedSampler):
kwargs
[
'
n_live_points
'
]
=
kwargs
.
pop
(
equiv
)
def
_verify_kwargs_against_default_kwargs
(
self
):
"""
Test the length of the directory where multinest will write the output.
This is an issue with MultiNest that we can
'
t solve here.
https://github.com/JohannesBuchner/PyMultiNest/issues/115
"""
if
not
self
.
kwargs
[
'
outputfiles_basename
'
]:
self
.
kwargs
[
'
outputfiles_basename
'
]
=
self
.
outdir
+
'
/pymultinest_{}/
'
.
format
(
self
.
label
)
self
.
kwargs
[
'
outputfiles_basename
'
]
=
\
'
{}/pm_{}/
'
.
format
(
self
.
outdir
,
self
.
label
)
if
self
.
kwargs
[
'
outputfiles_basename
'
].
endswith
(
'
/
'
)
is
False
:
self
.
kwargs
[
'
outputfiles_basename
'
]
=
'
{}/
'
.
format
(
self
.
kwargs
[
'
outputfiles_basename
'
])
check_directory_exists_and_if_not_mkdir
(
self
.
kwargs
[
'
outputfiles_basename
'
])
if
len
(
self
.
kwargs
[
'
outputfiles_basename
'
])
>
(
100
-
22
):
logger
.
warning
(
'
The length of {} exceeds 78 characters.
'
'
Post-processing will fail because the file names will be cut
'
'
off. Please choose a shorter
"
outdir
"
or
"
label
"
.
'
.
format
(
self
.
__kwargs
[
'
outputfiles_basename
'
]))
check_directory_exists_and_if_not_mkdir
(
self
.
kwargs
[
'
outputfiles_basename
'
])
NestedSampler
.
_verify_kwargs_against_default_kwargs
(
self
)
def
run_sampler
(
self
):
...
...
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