Broken pipe Error

Getting error when trying to run the package …


==> Building model…

Epoch: 0
learning_rate: 0.01
Traceback (most recent call last):
File “”, line 1, in
Traceback (most recent call last):
File “C:\Users\AD\Anaconda3\lib\multiprocessing\spawn.py”, line 105, in spawn_main
File “mainpro_CK+.py”, line 172, in
exitcode = _main(fd)train(epoch)

File “C:\Users\AD\Anaconda3\lib\multiprocessing\spawn.py”, line 114, in _main
File “mainpro_CK+.py”, line 106, in train
prepare(preparation_data)for batch_idx, (inputs, targets) in enumerate(trainloader):
File “C:\Users\AD\Anaconda3\lib\site-packages\torch\utils\data\dataloader.py”, line 279, in iter

  File "C:\Users\AD\Anaconda3\lib\multiprocessing\spawn.py", line 225, in prepare

return _MultiProcessingDataLoaderIter(self)
_fixup_main_from_path(data[‘init_main_from_path’]) File “C:\Users\AD\Anaconda3\lib\site-packages\torch\utils\data\dataloader.py”, line 719, in init

File “C:\Users\AD\Anaconda3\lib\multiprocessing\spawn.py”, line 277, in _fixup_main_from_path
w.start()
run_name=“mp_main”) File “C:\Users\AD\Anaconda3\lib\multiprocessing\process.py”, line 112, in start

File “C:\Users\AD\Anaconda3\lib\runpy.py”, line 263, in run_path
self._popen = self._Popen(self)pkg_name=pkg_name, script_name=fname)

File “C:\Users\AD\Anaconda3\lib\multiprocessing\context.py”, line 223, in _Popen
File “C:\Users\AD\Anaconda3\lib\runpy.py”, line 96, in _run_module_code
return _default_context.get_context().Process._Popen(process_obj)mod_name, mod_spec, pkg_name, script_name)

File “C:\Users\AD\Anaconda3\lib\multiprocessing\context.py”, line 322, in _Popen
File “C:\Users\AD\Anaconda3\lib\runpy.py”, line 85, in _run_code
return Popen(process_obj)exec(code, run_globals)

File “C:\Users\AD\Anaconda3\lib\multiprocessing\popen_spawn_win32.py”, line 89, in init
File “C:\Users\AD\Desktop\Facial-Expression-Recognition.Pytorch-master\mainpro_CK+.py”, line 172, in
reduction.dump(process_obj, to_child)train(epoch)

File “C:\Users\AD\Anaconda3\lib\multiprocessing\reduction.py”, line 60, in dump
File “C:\Users\AD\Desktop\Facial-Expression-Recognition.Pytorch-master\mainpro_CK+.py”, line 106, in train
ForkingPickler(file, protocol).dump(obj)for batch_idx, (inputs, targets) in enumerate(trainloader):

File “C:\Users\AD\Anaconda3\lib\site-packages\torch\utils\data\dataloader.py”, line 279, in iter
BrokenPipeError : return _MultiProcessingDataLoaderIter(self)[Errno 32] Broken pipe

File “C:\Users\AD\Anaconda3\lib\site-packages\torch\utils\data\dataloader.py”, line 719, in init
w.start()
File “C:\Users\AD\Anaconda3\lib\multiprocessing\process.py”, line 112, in start
self._popen = self._Popen(self)
File “C:\Users\AD\Anaconda3\lib\multiprocessing\context.py”, line 223, in _Popen
return _default_context.get_context().Process._Popen(process_obj)
File “C:\Users\AD\Anaconda3\lib\multiprocessing\context.py”, line 322, in _Popen
return Popen(process_obj)
File “C:\Users\AD\Anaconda3\lib\multiprocessing\popen_spawn_win32.py”, line 46, in init
prep_data = spawn.get_preparation_data(process_obj._name)
File “C:\Users\AD\Anaconda3\lib\multiprocessing\spawn.py”, line 143, in get_preparation_data
_check_not_importing_main()
File “C:\Users\AD\Anaconda3\lib\multiprocessing\spawn.py”, line 136, in _check_not_importing_main
is not going to be frozen to produce an executable.’’’)
RuntimeError:
An attempt has been made to start a new process before the
current process has finished its bootstrapping phase.

    This probably means that you are not using fork to start your
    child processes and you have forgotten to use the proper idiom
    in the main module:

        if __name__ == '__main__':
            freeze_support()
            ...

    The "freeze_support()" line can be omitted if the program
    is not going to be frozen to produce an executable.

C:\Users\AD\Desktop\Facial-Expression-Recognition.Pytorch-master>

You should try https://discuss.pytorch.org/ for Pytorch related question. Although the error you are seeing is likely related to Windows and the TLdr right now is there is no good fix to it (you can search for broken pipe on this discourse we have a few solution you can try like: Multiprocessing (windows 10) BrokenPipeError: [Errno 32] Broken pipe or @lucianopaz。Please help me solve the Windows multiprocessing issue)