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
similar to #197, #58
I installed pytorch conda install pytorch torchvision cudatoolkit=10.2 -c pytorch
I installed python libraries dominate pip install dominate
When i tried python test.py --name label2city_1024p --netG local --ngf 32 --resize_or_crop none. It shows following error
Traceback (mostrecentcalllast):
File"<string>", line1, in<module>File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\spawn.py", line105, inspawn_mainexitcode=_main(fd)
File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\spawn.py", line114, in_mainprepare(preparation_data)
File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\spawn.py", line225, inprepare_fixup_main_from_path(data['init_main_from_path'])
File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\spawn.py", line277, in_fixup_main_from_pathrun_name="__mp_main__")
File"C:\Users\Devpuri\anaconda3\lib\runpy.py", line263, inrun_pathpkg_name=pkg_name, script_name=fname)
File"C:\Users\Devpuri\anaconda3\lib\runpy.py", line96, in_run_module_codemod_name, mod_spec, pkg_name, script_name)
File"C:\Users\Devpuri\anaconda3\lib\runpy.py", line85, in_run_codeexec(code, run_globals)
File"D:\AI\didoc scanner\pix2pixHD-master\test.py", line38, in<module>fori, datainenumerate(dataset):
File"C:\Users\Devpuri\anaconda3\lib\site-packages\torch\utils\data\dataloader.py", line279, in__iter__return_MultiProcessingDataLoaderIter(self)
File"C:\Users\Devpuri\anaconda3\lib\site-packages\torch\utils\data\dataloader.py", line719, in__init__w.start()
File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\process.py", line112, instartself._popen=self._Popen(self)
File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\context.py", line223, in_Popenreturn_default_context.get_context().Process._Popen(process_obj)
File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\context.py", line322, in_PopenreturnPopen(process_obj)
File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\popen_spawn_win32.py", line46, in__init__prep_data=spawn.get_preparation_data(process_obj._name)
File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\spawn.py", line143, inget_preparation_data_check_not_importing_main()
File"C:\Users\Devpuri\anaconda3\lib\multiprocessing\spawn.py", line136, in_check_not_importing_mainisnotgoingtobefrozentoproduceanexecutable.''')
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.
Traceback (most recent call last):
File "C:\Users\Devpuri\anaconda3\lib\site-packages\torch\utils\data\dataloader.py", line 761, in _try_get_data
data = self._data_queue.get(timeout=timeout)
File "C:\Users\Devpuri\anaconda3\lib\multiprocessing\queues.py", line 105, in get
raise Empty
_queue.Empty
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "test.py", line 38, in <module>
for i, data in enumerate(dataset):
File "C:\Users\Devpuri\anaconda3\lib\site-packages\torch\utils\data\dataloader.py", line 345, in __next__
data = self._next_data()
File "C:\Users\Devpuri\anaconda3\lib\site-packages\torch\utils\data\dataloader.py", line 841, in _next_data
idx, data = self._get_data()
File "C:\Users\Devpuri\anaconda3\lib\site-packages\torch\utils\data\dataloader.py", line 808, in _get_data
success, data = self._try_get_data()
File "C:\Users\Devpuri\anaconda3\lib\site-packages\torch\utils\data\dataloader.py", line 774, in _try_get_data
raise RuntimeError('DataLoader worker (pid(s) {}) exited unexpectedly'.format(pids_str))
RuntimeError: DataLoader worker (pid(s) 3984) exited unexpectedly
The text was updated successfully, but these errors were encountered:
similar to #197, #58
I installed pytorch
conda install pytorch torchvision cudatoolkit=10.2 -c pytorch
I installed python libraries dominate
pip install dominate
When i tried
python test.py --name label2city_1024p --netG local --ngf 32 --resize_or_crop none
. It shows following errorThe text was updated successfully, but these errors were encountered: