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
7b006e26
Commit
7b006e26
authored
6 years ago
by
Gregory Ashton
Browse files
Options
Downloads
Patches
Plain Diff
Clean up sampler help
parent
a67de2dd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!183
Adds documentation for implemented samplers
Pipeline
#30437
passed
6 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tupak/core/sampler.py
+5
-1
5 additions, 1 deletion
tupak/core/sampler.py
tupak/core/utils.py
+2
-1
2 additions, 1 deletion
tupak/core/utils.py
with
7 additions
and
2 deletions
tupak/core/sampler.py
+
5
−
1
View file @
7b006e26
...
...
@@ -1909,7 +1909,11 @@ if utils.command_line_args.sampler_help:
print
(
'
Help for sampler
"
{}
"
:
'
.
format
(
sampler
))
print
(
sampler_class
.
__doc__
)
else
:
print
(
'
Requested sampler {} not implemented.
'
)
if
sampler
==
"
None
"
:
print
(
'
For help with a specific sampler, call sampler-help with
'
'
the name of the sampler
'
)
else
:
print
(
'
Requested sampler {} not implemented
'
.
format
(
sampler
))
print
(
'
Available samplers = {}
'
.
format
(
implemented_samplers
))
sys
.
exit
()
...
...
This diff is collapsed.
Click to expand it.
tupak/core/utils.py
+
2
−
1
View file @
7b006e26
...
...
@@ -435,7 +435,8 @@ def set_up_command_line_arguments():
help
=
"
Force clean data, never use cached data
"
)
parser
.
add_argument
(
"
-u
"
,
"
--use-cached
"
,
action
=
"
store_true
"
,
help
=
"
Force cached data and do not check its validity
"
)
parser
.
add_argument
(
"
--sampler-help
"
,
help
=
(
"
Print help for given sampler
"
))
parser
.
add_argument
(
"
--sampler-help
"
,
nargs
=
'
?
'
,
default
=
False
,
const
=
'
None
'
,
help
=
"
Print help for given sampler
"
)
parser
.
add_argument
(
"
-t
"
,
"
--test
"
,
action
=
"
store_true
"
,
help
=
(
"
Used for testing only: don
'
t run full PE, but
"
"
just check nothing breaks
"
))
...
...
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