You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To make Julia Object loadable from python, there are three issues:
For simple Julia struct (no functions): utilities the stack machine to build a similar python class and load data into it. Will need a rule-base translation for the struct definition to python class definition string.
For Julia Arrays: use the array element type to determine whether to write as python list or numpy array.
For complex Julia Object (like Function and struct with functions): currently there is no simple solution, so these will be unsupported.
The text was updated successfully, but these errors were encountered:
To make Julia Object loadable from python, there are three issues:
For simple Julia struct (no functions): utilities the stack machine to build a similar python class and load data into it. Will need a rule-base translation for the struct definition to python class definition string.
For Julia Arrays: use the array element type to determine whether to write as python list or numpy array.
For complex Julia Object (like Function and struct with functions): currently there is no simple solution, so these will be unsupported.
The text was updated successfully, but these errors were encountered: