我如何绘制theano.tensor值?

时间:2016-06-22 06:01:08

标签: python debugging opencv theano

使用imshow将TensorType(float64,矩阵)可视化为图像,我怎么能这样?我不能直接在Tensor上使用imshow,因为它给了我这个错误

mat is not a numpy array, neither a scalar

当我尝试使用numpy.asarray将数据类型转换为数组时,我得到了

 mat data type = 17 is not supported

有没有办法转换为uint8数据类型?

1 个答案:

答案 0 :(得分:0)

Theano张量是符号变量,没有附加值。如果你想绘制一些东西它可能是一个共享变量(你的网络的权重),在这种情况下,你可以使用my_shared.get_value()获取值,或者在传递输入时获取网络的输出,在这种情况下我相信它应该已经是一个阵容了。