Skip to content

Commit

Permalink
enh: export ancillary parameters in autosave
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jan 8, 2022
1 parent aa1cde4 commit 91f92f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
0.13.2
- fix: model parameters defined via expressions were not exported
- enh: export ancillary parameters in autosave
0.13.1
- fix: make sure fit parameters are identified by their label
instead of by an index (which can be wrong, now that we have
Expand Down
2 changes: 1 addition & 1 deletion pyjibe/fd/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def autosave(self, fdist):
)
fname = os.path.join(adir, newbase)
# Export data
which = ["params_fitted", "rating"]
which = ["params_fitted", "params_ancillary", "rating"]
export.save_tsv_metadata_results(filename=fname,
fdist_list=exp_curv,
which=which)
Expand Down

0 comments on commit 91f92f2

Please sign in to comment.