我需要将给定的numpy数组转换为theano tensor变量。我需要这个转换theano obj与另一个theano变量相乘。
http.Handle("/getFile/publicFolder/", http.StripPrefix("/getFile/publicFolder/", http.FileServer(http.Dir("/publicFolder"))))
我正在使用theano 0.9.0。我尝试了上面的代码(在查看convert python ndarray to theano tensor type variable之后)但是它导致了以下错误:
def convert_fp(in_X,UpperLimit, LowerLimit): // in_X is a numpy_array
power = T.cast(2.**(UpperLimit - LowerLimit), theano.config.floatX)
X = theano.shared(in_X) // I want to the CONVERSION here
value_tmp = X*power // and use the converted var here
我是theano的初学者,因此任何帮助将不胜感激:)
答案 0 :(得分:0)
错误的参数导致错误。