我正在尝试使用在窗口上使用gpu。 This教程建议我在.theanorc
创建一个home
目录,并在其中创建一个theanorc.txt
,以便能够在初始化之前设置配置标志。
在哪里创建theanorc.txt
文件(即如何找到我家的位置?)以及如何让theano能够看到它?
我已尝试使用以下脚本创建.theanorc
,然后在其中手动添加theanorc.txt
,但未启用gpu
:
import os
_theano_base_dir = os.path.expanduser('~')
if not os.access(_theano_base_dir, os.W_OK):
_theano_base_dir = '/tmp'
_theano_dir = os.path.join(_theano_base_dir, '.theanorc')
if not os.path.exists(_theano_dir):
os.makedirs(_theano_dir)
theano_config_path = os.path.expanduser(os.path.join(_theano_dir, 'theanorc.txt'))
print (theano_config_path)
打印出来:C:\SPB_Data\.theanorc\theanorc.txt
C:\SPB_Data
我的home
?
答案 0 :(得分:1)
在Windows中,您的主目录应为C:\Users\Your_Windows_UserName
。此外,如果您要创建没有.theanorc
扩展名的.txt
文件,可以使用Notepad++