labels for parameters in nDim
Hello Is there any possibility to label the different fitting dimension and save them with the hdf backend? This feature would help to evaluate the different walker chains after the fit was complete, if there is a dynamic number of parameters.
kind regards, Paul
This isn't supported out of the box, but you should be able to arrange something like this by writing to the back end directly. You could try something like:
with backend.open("a") as f:
f.create_dataset("parameter_names", data=names)
Thank you very much for the fast answer.
Since there are some problems with the string format in hdf files, I used another workaround:
with backend.open('a') as f: f.attrs.create(name="parameter_names", data=names)
where names could be of any type