-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the porblem of training the model #23
Comments
Run this program in linux would fix it, pytorch implements different solutions in function |
Thanks a lot!
…------------------ 原始邮件 ------------------
发件人: "mellthebs";
发送时间: 2019年7月5日(星期五) 下午5:22
收件人: "StrangerZhang/SiamFC-PyTorch";
抄送: "guangqianqin"<[email protected]>;"Author";
主题: Re: [StrangerZhang/SiamFC-PyTorch] the porblem of training the model(#23)
Run this program in linux would fix it, pytorch implements different solutions in function DataLoaderIter ,so it can't work well in windows.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Hi, in case that you are still interested to run it in Windows 10 again. To fix the issue, change your num_worker in config.py to 0 so that it will use the main thread (only one process) ->(multithreading/process related error is a common issue in Window). |
L:\Anaconda\envs\py3\python.exe E:/Gavin/SiamFC-PyTorch-master/siamfc/train.py
0%| | 0/6650 [00:00<?, ?it/s]Traceback (most recent call last):
File "E:/Gavin/SiamFC-PyTorch-master/siamfc/train.py", line 135, in
train(0 , 'E:\Gavin\data\ILSVRC_VID_CURATION')
File "E:/Gavin/SiamFC-PyTorch-master/siamfc/train.py", line 101, in train
for i, data in enumerate(tqdm(trainloader)):
File "L:\Anaconda\envs\py3\lib\site-packages\tqdm_tqdm.py", line 1005, in iter
for obj in iterable:
File "L:\Anaconda\envs\py3\lib\site-packages\torch\utils\data\dataloader.py", line 501, in iter
return _DataLoaderIter(self)
File "L:\Anaconda\envs\py3\lib\site-packages\torch\utils\data\dataloader.py", line 289, in init
w.start()
File "L:\Anaconda\envs\py3\lib\multiprocessing\process.py", line 105, in start
self._popen = self._Popen(self)
File "L:\Anaconda\envs\py3\lib\multiprocessing\context.py", line 212, in _Popen
return _default_context.get_context().Process._Popen(process_obj)
File "L:\Anaconda\envs\py3\lib\multiprocessing\context.py", line 313, in _Popen
return Popen(process_obj)
File "L:\Anaconda\envs\py3\lib\multiprocessing\popen_spawn_win32.py", line 66, in init
reduction.dump(process_obj, to_child)
File "L:\Anaconda\envs\py3\lib\multiprocessing\reduction.py", line 59, in dump
ForkingPickler(file, protocol).dump(obj)
_pickle.PicklingError: Can't pickle <class 'Transaction'>: attribute lookup Transaction on builtins failed
Traceback (most recent call last):
File "", line 1, in
File "L:\Anaconda\envs\py3\lib\multiprocessing\spawn.py", line 106, in spawn_main
exitcode = _main(fd)
File "L:\Anaconda\envs\py3\lib\multiprocessing\spawn.py", line 116, in _main
self = pickle.load(from_parent)
EOFError: Ran out of input
The text was updated successfully, but these errors were encountered: