Slow File I/O with Hickle #830
MarkHolmstrom
started this conversation in
General
Replies: 1 comment
-
In our previous experiment, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My current workflow requires frequently saving to and loading from disk the replay buffer (AdvancedReplayBuffer), which I noticed was taking a long time both saving and loading as the replay buffer grew in size. Replacing the buffer's save and load calls with the respective Pickle dump and load sped up the I/O significantly and now I am wondering why this is not the framework default.
Overall, Pickle is used for file I/O much more often than Hickle, which is used only for buffers.
Beta Was this translation helpful? Give feedback.
All reactions