I have too components that deal with n-dimension array. One component is written in python which process the data and save the processed ndarray by tobytes()
. Now the other component is written in java, which need to read the serialized ndarray produced in first component.
I am curious if there are any existing java libraries that can read serialized numpy array. Or there is a better way to communicate ndarray between java & python.
Any advice is appreciated!
Thank you!