How to fix a runtime warning? #571
Closed
decadance-dance
started this conversation in
General
Replies: 1 comment 1 reply
-
This warning indicates that the data you passed from one worker to the next worker is huge. This will affect the performance since it may hit the memory bandwidth. To reduce the size:
For CV tasks, this might be an impossible task to reduce the size. You can ignore this warning. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I almost always get such message running my CV models:
RuntimeWarning: IPC data (x bytes) is large, which may affect performance
.What can I do to fix this warning to ensure I am OK and it's not gonna affect performance.
P.S. I use my own mixins:
Beta Was this translation helpful? Give feedback.
All reactions