2016-11-22 64 views

回答

0

只需在終端中使用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'> 
+0

非常感謝教授。塞繆爾Lelièvre –