在屏幕会话中训练在 Keras 中实现的神经网络时,我似乎遇到了 Theano 的竞争条件。
我如下进行。我 ssh 进入我正在使用的计算集群(我不是它的 root 用户)。
然后我运行:
screen -S model1
然后,一旦我进入这个屏幕会话,我就会运行 Python 脚本来训练我的模型。我分离屏幕(Ctrl+A+D),当我执行 screen -r 时,一切都很好。但是,如果我在运行 screen -r 之前退出 ssh 会话,并在重新登录时运行 screen -r,则会收到以下错误:
compilelock.py", line 91, in get_lock
File "~/.local/lib/python2.7/site-packages/theano/gof/compilelock.py", line 275, in lock
OSError: [Errno 13] Permission denied: '~/.theano/compiledir_Linux-3.11--generic-x86_64-with-Ubuntu-13.10-saucy-x86_64-2.7.5+-64/lock_dir'
Error in sys.exitfunc:
Traceback (most recent call last):
File "/usr/lib/python2.7/atexit.py", line 24, in _run_exitfuncs
func(*targs, **kargs)
File "~/.local/lib/python2.7/site-packages/theano/gof/cmodule.py", line 1344, in _on_atexit
File "/usr/lib/python2.7/contextlib.py", line 17, in __enter__
return self.gen.next()
File "~/.local/lib/python2.7/site-packages/theano/gof/compilelock.py", line 54, in lock_ctx
File "~/.local/lib/python2.7/site-packages/theano/gof/compilelock.py", line 91, in get_lock
File "~/.local/lib/python2.7/site-packages/theano/gof/compilelock.py", line 275, in lock
OSError: [Errno 13] Permission denied: '~/.theano/compiledir_Linux-3.11--generic-x86_64-with-Ubuntu-13.10-saucy-x86_64-2.7.5+-64/lock_dir'
有谁知道为什么会这样?有趣的是,只有当我注销并在登录后尝试运行 screen -r 时才会发生这种情况。