WARNING (theano.tensor.blas): Using NumPy C-API based implementation for BLAS functions.

安装theano时出现WARNING (theano.tensor.blas): Using NumPy C-API based implementation for BLAS functions.应该怎么解决

1.使用cmd安装类库

conda install mkl
conda install mkl-service
conda install blas

2.在如下位置添加配置文件.theanorc.txt

位置:C:\Users\sml(具体是自己的用户名)

**注意:**文件名的前边有一个点
在新建的配置文件中添加如下内容

[blas]
ldflags=-lblas
或着
[blas]
ldflags=-lmkl_rt 




你可能感兴趣的:(机器学习)