我最近在Windows 10(x64)上使用Anaconda安装了Python 2.7
我正在尝试安装Theano,但我不确定在哪里放置' .theanorc'文件(用于设置Theano参数)。我已经证实theano工作(训练有素的小型神经网络)。
我已尝试将其放入C:\Anaconda
(python.exe
和\Lib\os.py
所在的位置),但它看起来并不像theano注册它。
我的.theanorc
文件
[global]
floatX=float32
当我输入
>>> import theano; print(theano.config)
我得到了
...
floatX (('float64', 'float32', 'float16'))
Doc: Default floating-point precision for python casts.
Note: float16 support is experimental, use at your own risk.
Value: float64
...
答案 0 :(得分:4)
dotfiles通常存储在%HOME%
目录中,该目录在Windows上为%USERPROFILE%
。这转换为C:\Users\username