I am using Dask with deep learning models and large arrays. In particular, I am trying to get predictions using map_blocks
array.map_blocks(model.predict)
Since serialization takes time, is there a way to avoid model to be serialized for each call?