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 am encountering difficulties with the multiprocessing package. When attempting to run my code using the assync_dataloader on a single GPU in MS Windows 10, I encountered the following error:
File "C:\Users\USER\miniconda3\lib\multiprocessing\context.py", line 336, in _Popen
return Popen(process_obj)
File "C:\Users\USER\miniconda3\lib\multiprocessing\popen_spawn_win32.py", line 93, in __init__
reduction.dump(process_obj, to_child)
File "C:\Users\USER\miniconda3\lib\multiprocessing\reduction.py", line 60, in dump
ForkingPickler(file, protocol).dump(obj)
AttributeError: Can't pickle local object 'RTDTask.get_feature_fn.<locals>._example_to_feature'
It seems that the issue is related to the RTDTask.get_feature_fn.<locals>._example_to_feature function and its inability to be pickled.
Any assistance in resolving this problem would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
Issue Description:
I am encountering difficulties with the multiprocessing package. When attempting to run my code using the
assync_dataloader
on a single GPU in MS Windows 10, I encountered the following error:It seems that the issue is related to the
RTDTask.get_feature_fn.<locals>._example_to_feature
function and its inability to be pickled.Any assistance in resolving this problem would be greatly appreciated.
The text was updated successfully, but these errors were encountered: