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
Then I clone the repo to e:\PhotoSketch
download and unpack the pretrained.zip to e:\PhotoSketch\pretrained
(this results in e:\PhotoSketch\pretrained\latest_net_(D|G).pth being created)
I run (a windows .bat conversion of the .sh) test_pretrained.bat
Which results in an error saying the pretrained data couldn't be found (but looking in the wrong location).. E:\\PhotoSketch\\pretrained\\Exp\\PhotoSketch\\Checkpoints\\pretrained\\latest_net_G.pth
If I copy both the the *.pth files to that location and relaunch, it produces a bit more output but eventually dies with..
model [Pix2PixModel] was created
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\multiprocessing\spawn.py", line 105, in spawn_main
exitcode = _main(fd)
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\multiprocessing\spawn.py", line 114, in _main
prepare(preparation_data)
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\multiprocessing\spawn.py", line 225, in prepare
_fixup_main_from_path(data['init_main_from_path'])
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\multiprocessing\spawn.py", line 277, in _fixup_main_from_path
run_name="__mp_main__")
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\runpy.py", line 263, in run_path
pkg_name=pkg_name, script_name=fname)
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\runpy.py", line 96, in _run_module_code
mod_name, mod_spec, pkg_name, script_name)
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "E:\PhotoSketch\test_only.py", line 20, in <module>
for i, data in enumerate(dataset):
File "E:\PhotoSketch\data\custom_dataset_data_loader.py", line 41, in __iter__
for i, data in enumerate(self.dataloader):
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\site-packages\torch\utils\data\dataloader.py", line 417, in __iter__
return DataLoaderIter(self)
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\site-packages\torch\utils\data\dataloader.py", line 234, in __init__
w.start()
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\multiprocessing\process.py", line 105, in start
self._popen = self._Popen(self)
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\multiprocessing\context.py", line 223, in _Popen
return _default_context.get_context().Process._Popen(process_obj)
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\multiprocessing\context.py", line 322, in _Popen
return Popen(process_obj)
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\multiprocessing\popen_spawn_win32.py", line 33, in __init__
prep_data = spawn.get_preparation_data(process_obj._name)
File "C:\Users\MyUserId\Miniconda3\envs\sketch\lib\multiprocessing\spawn.py", line 143, in get_preparation_data
_check_not_importing_main()
File "C:\Users\MyUserId\Miniconda3\envs\sketch\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.
The text was updated successfully, but these errors were encountered:
Thanks for trying out the code! The pytorch 0.3 version isn't designed to work with Windows. I am working on a pytorch 0.4 version for our code, which should be cross-platform. Hopefully, it will be released soon.
Hi.. trying to use the pretrained here.
I've set up the environment with conda.
Then I clone the repo to e:\PhotoSketch
download and unpack the pretrained.zip to e:\PhotoSketch\pretrained
(this results in e:\PhotoSketch\pretrained\latest_net_(D|G).pth being created)
I run (a windows .bat conversion of the .sh) test_pretrained.bat
Which results in an error saying the pretrained data couldn't be found (but looking in the wrong location)..
E:\\PhotoSketch\\pretrained\\Exp\\PhotoSketch\\Checkpoints\\pretrained\\latest_net_G.pth
If I copy both the the
*.pth
files to that location and relaunch, it produces a bit more output but eventually dies with..The text was updated successfully, but these errors were encountered: