Open OverEthanol opened 4 months ago
So the crudest way of doing this (although it should still work) is by using pickle
. This is fairly well documented see e.g. this. I wouldn't recommend sending pickles around though, if you need to do that you might want to write your own save/load methods. If that's the route you take, we would be happy to review/support and then merge in such methods.
Hi,
I am currently trying to learn how to do spot pattern indexing using the kinematic diffraction from
diffsims
.However, depending how finely I want to discretize the reduced fundamental orientation sector, the computation time for running
can take up a lot of memories and time (especially when the laptop is poor). Hence, I would like to run this simulation process on a cluster instead and then load the simulated results into the Jupyter notebook for indexing. Is such a thing possible to do? If so, how should I save the output object which seems to be
and how should I load it again?