gpt4 book ai didi

python - 不可散列类型 : 'list' in printing Tensorflow vector

转载 作者:太空宇宙 更新时间:2023-11-04 04:53:23 25 4
gpt4 key购买 nike

我正在打印 Tensorflow 的矢量和矩阵。它打印 scalar 但显示 vectorMatrixTensor

的错误

代码如下:

import tensorflow as tf    
scalar = tf.constant([2])
vector = tf.constant([3,4,5])
Matrix = tf.constant([1,2,3],[4,5,6],[7,8,9])
Tensor = tf.constant([ [[1,2,3],[4,5,6],[7,8,9]],
[[1,2,3],[4,5,6],[7,8,9]],
[[1,2,3],[4,5,6],[7,8,9]] ])
with tf.Session() as session:
result = session.run(scalar)
print (result)
result = session.run(vector)
print (result)
result = session.run(Matrix)
print (result)
result = session.run(Tensor)
print (result)

我收到以下错误:

TypeError: unhashable type: 'list'

我该如何解决?

最佳答案

您的第 4 个陈述有误:使用

Matrix = tf.constant([ [1,2,3],[4,5,6],[7,8,9] ])
# ^ extra parenthesis here

代替

Matrix = tf.constant([1,2,3],[4,5,6],[7,8,9])

关于python - 不可散列类型 : 'list' in printing Tensorflow vector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47670697/

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