tengshaofeng / ResidualAttentionNetwork-pytorch

a pytorch code about Residual Attention Network. This code is based on two projects from
667 stars 165 forks source link

The error about if __name__ == '__main__': freeze_support() #26

Open November666 opened 4 years ago

November666 commented 4 years ago

excuse me,your code bring me a big help about my research,but,when i run the train.py,it appears the following errors,do you konw how to fix it? thank you! 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.

ForkingPickler(file, protocol).dump(obj) BrokenPipeError: [Errno 32] Broken pipe

wgy1027 commented 3 years ago

excuse me,your code bring me a big help about my research,but,when i run the train.py,it appears the following errors,do you konw how to fix it? thank you! 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.

ForkingPickler(file, protocol).dump(obj) BrokenPipeError: [Errno 32] Broken pipe

Please use the following code:

if __name__ == "__main__":
  torch.multiprocessing.freeze_support()
  main()