-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
collect_results handles .jld2 with groups incorrectly #396
Comments
perhaps @JonasIsensee has an idea for here? |
I believe the first question to answer is, Should the dataframe columns be edit: just to clarify, what you are getting is obviously not desirable but I just don't know what behaviour would be good. |
i have a temp fix on my side as below
when |
The problem with the standard implementation is default keyword argument
|
Describe the bug
When config is saved as JLD2 format and has groups, collect_results cannot properly collect the results into a data frame
Minimal Working Example
gives
the root cause is the use of
jldopen
infunction to_data_row(file::File{format"JLD2"}; kwargs...)
that results in the grouped dict:and the
keys
on it is the groupskeys(cjld2)
gives
comparing to loading with
wload
which gives
I think we should allow the user to control whether or not jldopen is used.
Any suggestion how to implement this?
I'm happy to raise a PR once we have an agreed solution.
The text was updated successfully, but these errors were encountered: