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 get a broken pipe error (called by multiprocessing/connection.py)
BrokenPipeError: [Errno 32] Broken pipe
occurs when MAX_BATCHES reaches its limit
i think it occurs on 'behavioural_cloning_train' function when the following is called:
if batch_i > MAX_BATCHES:
break
do u have a suggestion to fix it?
The text was updated successfully, but these errors were encountered:
Hey that is "kind of okey", as it is simply ending data loading process prematurely and things are not cleaned up properly. I recommend you catch the exception and ignore it if you want to continue code after that point.
i get a broken pipe error (called by multiprocessing/connection.py)
BrokenPipeError: [Errno 32] Broken pipe
occurs when MAX_BATCHES reaches its limit
i think it occurs on 'behavioural_cloning_train' function when the following is called:
if batch_i > MAX_BATCHES:
break
do u have a suggestion to fix it?
The text was updated successfully, but these errors were encountered: