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
Currently, prefetching the next partition of keys and samples is done synchronously by each data worker. It is not clear yet if this will block/delay training or not. If it turns out to do so, we would probably need some kind of multithreading or asyncio support.
The text was updated successfully, but these errors were encountered:
In order to hide the latency of data transfer from selector during
training, we add an configurable number of partitions to be prefetched
in the dataloader. Furthermore, we change the storage and selector to
use processes instead of threads for serving gRPC requests.
Solves #175.
Currently, prefetching the next partition of keys and samples is done synchronously by each data worker. It is not clear yet if this will block/delay training or not. If it turns out to do so, we would probably need some kind of multithreading or
asyncio
support.The text was updated successfully, but these errors were encountered: