What is the most efficient way of serializing a numpy array using simplejson?
|
I'd use In a quest for greater efficiency, you could subclass json.JSONEncoder (in |
||||
|
|
|
I found this json subclass code for serializing one-dimensional numpy arrays within a dictionary. I tried it and it works for me.
My dictionary is 'results'. Here's how I write to the file "data.json":
|
|||
|
|
This shows how to convert from a numpy array to json and back to an array:
|
|||
|
|