本文主要是介绍theano 中出现 TypeError: 'TensorVariable' object does not support item assignment,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
theano 中出现 TypeError: 'TensorVariable' object does not support item assignment
在使用TensorVariable类型数据时,如果对TensorVariable类型中某个元素赋值,就可能出现上述错误。如下:
TV_list1[1,2] = TV_list2[1,2]
其中
TV_list1 和
TV_list2 为TensorVariable类型。
可以使用
T.reshape() 和 T.concatenate()等矩阵操作解决
但是如果数据较大,可能出现 maximum recursion depth exceeded in cmp 等错误。因此 尽量少使用reshape操作。
这篇关于theano 中出现 TypeError: 'TensorVariable' object does not support item assignment的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!