Feature request: support for loading pickled results from Hybrid Jobs #18
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
Describe the feature you'd like
Amazon Braket Hybrid Jobs may encapsulate job results in a Python pickle file, especially if the results are large or contain images. Currently Julia isn't able to natively read pickle files (e.g. without shelling out to Python or using PythonCall.jl). Ideally we'd be able to un-pickle these files without any dependency on Python.
Is this feature already present in the Python SDK?
Yes, there is support for pickled results files.
How would this feature be used? Please describe.
Users would be able to extract their results without having to use or install Python.
Describe alternatives you've considered
You can currently use pickle either via the shell (e.g. running a
cmd
) or PythonCall, but this isn't ideal behavior.Additional context
There are some nascent pure Julia packages for un-pickling (e.g. Pandas.jl and Pickle.jl). Any implementation of this feature should explain why a particular package was chosen.
The text was updated successfully, but these errors were encountered: