Azure 机器学习工作室执行 python 脚本,Theano 无法执行优化的 C 实现(对于 CPU 和 GPU)
Azure Machine Learning Studio execute python script, Theano unable to execute optimized C-implementations (for both CPU and GPU)
我正在 Azure 机器学习工作室中执行 python 脚本。我包括其他 python 脚本和 python 库 Theano。我可以看到 Theano 已加载,并且在执行脚本后得到了正确的结果。但是我看到了错误信息:
WARNING (theano.configdefaults): g++ not detected ! Theano will be unable to execute optimized C-implementations (for both CPU and GPU) and will default to Python implementations. Performance will be severely degraded. To remove this warning, set Theano flags cxx to an empty string.
有人知道怎么解决这个问题吗?谢谢!
我认为您无法解决这个问题 - Azure ML Studio 中的 Python 脚本环境相当锁定,您无法真正配置它(除了从 Anaconda/Python 版本)。
你最好使用新的 Azure ML 服务,它允许你有更多的配置选项(包括使用 GPU 等)。
我正在 Azure 机器学习工作室中执行 python 脚本。我包括其他 python 脚本和 python 库 Theano。我可以看到 Theano 已加载,并且在执行脚本后得到了正确的结果。但是我看到了错误信息:
WARNING (theano.configdefaults): g++ not detected ! Theano will be unable to execute optimized C-implementations (for both CPU and GPU) and will default to Python implementations. Performance will be severely degraded. To remove this warning, set Theano flags cxx to an empty string.
有人知道怎么解决这个问题吗?谢谢!
我认为您无法解决这个问题 - Azure ML Studio 中的 Python 脚本环境相当锁定,您无法真正配置它(除了从 Anaconda/Python 版本)。
你最好使用新的 Azure ML 服务,它允许你有更多的配置选项(包括使用 GPU 等)。