Tensorflow 中 Theano 的 Theano.tensor.ivector 的等价性
equivalence of Theano.tensor.ivector of Theano in Tensorflow
我是 Tensorflow 和 Theano 的新手。
Tensorflow 中的等价物是什么Theano.tensor.ivector?
例如,
x = Theano.tensor.ivector('x')
y = Theano.tensor.ivector('y')
据我所知,这样的东西是等价的:
import tensorflow as tf
x = tf.Variable([1, -2, 3], tf.int32, name='x')
您可以在以下链接中找到有关 theano 和 tensorflow 变量的一些额外信息(感谢 bouteillebleu):
http://deeplearning.net/software/theano/library/tensor/basic.html
https://www.tensorflow.org/programmers_guide/dims_types
如果您将这些用作输入并且不知道初始内容,则必须使用占位符:
import tensorflow as tf
x = tf.placeholder(tf.int32, name='x')
我是 Tensorflow 和 Theano 的新手。
Tensorflow 中的等价物是什么Theano.tensor.ivector?
例如,
x = Theano.tensor.ivector('x')
y = Theano.tensor.ivector('y')
据我所知,这样的东西是等价的:
import tensorflow as tf
x = tf.Variable([1, -2, 3], tf.int32, name='x')
您可以在以下链接中找到有关 theano 和 tensorflow 变量的一些额外信息(感谢 bouteillebleu):
http://deeplearning.net/software/theano/library/tensor/basic.html https://www.tensorflow.org/programmers_guide/dims_types
如果您将这些用作输入并且不知道初始内容,则必须使用占位符:
import tensorflow as tf
x = tf.placeholder(tf.int32, name='x')