I am getting the following error of spawning the process while running "python image_retrieval.py"
Brief error message:
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()
error.txt
Can anyone plz help me saying why I am getting this error and how to get rid of this error?
I am getting the following error of spawning the process while running "python image_retrieval.py"
Brief error message:
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()
error.txt
Can anyone plz help me saying why I am getting this error and how to get rid of this error?