Skip to content
Snippets Groups Projects
Commit b2f117e0 authored by MoritzThomasHuebner's avatar MoritzThomasHuebner
Browse files

Fixed some documentation

parent b785508c
No related branches found
No related tags found
1 merge request!932Fix pickle
......@@ -42,7 +42,7 @@ def result_file_name(outdir, label, extension='json', gzip=False):
label: str
Naming scheme of the output file
extension: str, optional
Whether to save as `hdf5` or `json`
Whether to save as `hdf5`, `json`, or `pickle`
gzip: bool, optional
Set to True to append `.gz` to the extension for saving in gzipped format
......@@ -730,11 +730,11 @@ class Result(object):
default=False
outdir: str, optional
Path to the outdir. Default is the one stored in the result object.
extension: str, optional {json, hdf5, True}
extension: str, optional {json, hdf5, pickle, True}
Determines the method to use to store the data (if True defaults
to json)
gzip: bool, optional
If true, and outputing to a json file, this will gzip the resulting
If true, and outputting to a json file, this will gzip the resulting
file and add '.gz' to the file extension.
"""
......
......@@ -93,7 +93,7 @@ def run_sampler(likelihood, priors=None, label='label', outdir='outdir',
saving. For example, if `meta_data={dtype: 'signal'}`. Warning: in case
of conflict with keys saved by bilby, the meta_data keys will be
overwritten.
save: bool
save: bool, str
If true, save the priors and results to disk.
If hdf5, save as an hdf5 file instead of json.
If pickle or pkl, save as an pickle file instead of json.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment