AttributeError: 'Tensor' object has no attribute 'argmix'
时间: 2023-11-09 21:09:33 浏览: 335
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误提示是因为 Tensor 对象没有 argmix 属性,正确的应该是 argmax。argmax 是一个函数,用于返回张量中最大值的索引。你可以使用以下代码来获取张量中最大值的索引:
```
import tensorflow as tf
# 创建一个张量
x = tf.constant([1, 3, 2])
# 获取最大值的索引
index = tf.argmax(x)
# 打印结果
print(index)
```
输出结果为:
```
tf.Tensor(1, shape=(), dtype=int64)
```
这表示最大值的索引为 1。
阅读全文