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
The current version is a bit opaque in the sense that I do not know how to use .shuffle() in combination with .prefetch() or .map(..., num_workers=10).
Please provide some documentation of best practices.
The text was updated successfully, but these errors were encountered:
In general prefer .prefetch() over .map(..., num_workers=10), because it executes the complete input processing in parallel and not only one mapping function.
Since #2 is now merged you can .shuffle() in the beginning and .prefetch() at the end.
The current version is a bit opaque in the sense that I do not know how to use
.shuffle()
in combination with.prefetch()
or.map(..., num_workers=10)
.Please provide some documentation of best practices.
The text was updated successfully, but these errors were encountered: