tf.constant
时间: 2023-06-21 14:08:15 浏览: 191
Tensorflow tf.tile()的用法实例分析
tf.constant是TensorFlow中的一个函数,用于创建一个常量张量(tensor)。它的作用类似于Python中的常量,即创建一个不可修改的常量值。常量张量可以是一个标量(scalar)、向量(vector)、矩阵(matrix)或者更高维度的张量。tf.constant函数需要传入一个常量值和一个数据类型作为参数,并返回一个常量张量。例如,以下代码创建一个形状为[2, 3]的常量矩阵:
```
import tensorflow as tf
# 创建一个常量矩阵
matrix = tf.constant([[1, 2, 3], [4, 5, 6]], dtype=tf.int32)
# 打印矩阵
print(matrix)
```
输出结果为:
```
tf.Tensor(
[[1 2 3]
[4 5 6]], shape=(2, 3), dtype=int32)
```
阅读全文