theano中tensor的构造方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了theano中tensor的构造方法相关的知识,希望对你有一定的参考价值。

import theano.tensor as T

x = T.scalar(‘myvar‘)
myvar = 256
print type(x),x,myvar

  

运行结果:

<class ‘theano.tensor.var.TensorVariable‘> myvar 256

 

结果分析:x只是指向myvar,真正的tensor对象是myvar。也就是x>myvar>256

以上是关于theano中tensor的构造方法的主要内容,如果未能解决你的问题,请参考以下文章

求教,theano.tensor中的max和argmax有啥区别

使用 tensor.zeros() 和 tensor.shape() 作为参数的 Theano 错误

ubuntu 中用pip安装了theano后怎么找不到theano,tensor,signal,downsample

RuntimeError: ‘lengths’ argument should be a 1D CPU int64 tensor, but got 1D cuda:0 Long tensor(代码片段

4d tensor

Theano set_value 用于强制转换的共享变量