I have newly installed the program, using conda installation in enviroment. After enviroment I created the necessary folders, copied the A and B PNG files into the train directories like this:
A
|-test <--my test pix here
|-train <--my train pix here
|-val
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.
Do I need to modify the file or what have I entered wrong? I am using Windows 10.
Hello,
I have newly installed the program, using conda installation in enviroment. After enviroment I created the necessary folders, copied the A and B PNG files into the train directories like this:
A |-test <--my test pix here |-train <--my train pix here |-val
and same structure in B
I then ran this command:
python datasets/combine_A_and_B.py --fold_A aaa/pix/A --fold_B aaa/pix/B --fold_AB aaa/pix
and I got this error:
RuntimeError: An attempt has been made to start a new process before the current process has finished its bootstrapping phase.
Do I need to modify the file or what have I entered wrong? I am using Windows 10.