在Windows中,在哪里创建`.theanorc.txt`文件以及如何使theano能够看到它?

时间:2017-08-05 16:20:40

标签: windows theano

我正在尝试使用在窗口上使用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

1 个答案:

答案 0 :(得分:1)

在Windows中,您的主目录应为C:\Users\Your_Windows_UserName。此外,如果您要创建没有.theanorc扩展名的.txt文件,可以使用Notepad++