我有一个csv文件要更改为thenao.tensor,我计划通过两个步骤完成 1 csv到ndarray:使用 genfromtxt 方法很容易。 2 ndarray to theano.tensor:如何做到这一步?有没有示例代码?
THX!
答案 0 :(得分:2)
您可以使用_shared
,显然:http://deeplearning.net/software/theano/library/tensor/basic.html#converting-from-python-objects
from theano.tensor import _shared
import numpy as np
x = _shared(np.arange(10))