如何查看创建该张量的操作
时间: 2024-05-06 09:20:43 浏览: 43
pytorch张量创建与操作
可以使用张量的`.op`属性来查看创建该张量的操作。例如:
```python
import tensorflow as tf
# 创建一个张量
x = tf.constant([1, 2, 3])
# 查看创建该张量的操作
print(x.op)
```
输出结果为:
```
name: "Const"
op: "Const"
attr {
key: "dtype"
value {
type: DT_INT32
}
}
attr {
key: "value"
value {
tensor {
dtype: DT_INT32
tensor_shape {
dim {
size: 3
}
}
int_val: 1
int_val: 2
int_val: 3
}
}
}
```
阅读全文