1
我想知道使用SageMath安裝Theano庫的步驟嗎?如何在本地安裝使用sageMath的Theano庫?
我想知道使用SageMath安裝Theano庫的步驟嗎?如何在本地安裝使用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'>
非常感謝教授。塞繆爾Lelièvre –