gpt4 book ai didi

python - Tensorflow 中 Theano 的 Theano.tensor.ivector 的等价性

转载 作者:行者123 更新时间:2023-11-30 09:00:03 26 4
gpt4 key购买 nike

我是 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')

关于python - Tensorflow 中 Theano 的 Theano.tensor.ivector 的等价性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43821436/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com