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
I'm using dill.dump_session to save simulation results and it's working perfectly... the only thing I don't understand is the file size - the total size of my variables in the saved session (in memory) is <10MB, but the file itself is >500MB. Can this be related to the size of imported modules? Is there any way to bypass this? For example, for memory-intensive variables I'm not interested in saving I simply do var=None before dumping... Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
I'm using
dill.dump_session
to save simulation results and it's working perfectly... the only thing I don't understand is the file size - the total size of my variables in the saved session (in memory) is <10MB, but the file itself is >500MB. Can this be related to the size of imported modules? Is there any way to bypass this? For example, for memory-intensive variables I'm not interested in saving I simply dovar=None
before dumping... Thanks!The text was updated successfully, but these errors were encountered: