如何在本地使用 sageMath 安装 Theano 库?

How to install Theano library using sageMath locally?

我想知道使用 SageMath 安装 Theano 库的步骤?

只需在终端中 运行 使用 pip 安装 theano。

$ sage -pip install theano

下次你运行 Sage,theano可用。

sage: from theano import *
sage: import theano.tensor as T
sage: from theano import function
sage: x = T.dscalar('x')
sage: y = T.dscalar('y')
sage: z = x + y
sage: f = function([x, y], z)
sage: f(2, 3)
array(5.0)
sage: numpy.allclose(f(16.3, 12.1), 28.4)
True
sage: type(x)
<class 'theano.tensor.var.TensorVariable'>