构造一个单位矩阵或一批矩阵。
用法
tf.eye(
num_rows, num_columns=None, batch_shape=None, dtype=tf.dtypes.float32, name=None
)
参数
-
num_rows
非负int32
标量Tensor
给出每个批处理矩阵中的行数。 -
num_columns
可选非负int32
标量Tensor
给出每个批处理矩阵中的列数。默认为num_rows
。 -
batch_shape
Python 整数的列表或元组或一维int32
Tensor
。如果提供,返回的Tensor
将具有此形状的前导批次尺寸。 -
dtype
结果Tensor
中元素的类型 -
name
此Op
的名称。默认为"eye"。
返回
-
形状
batch_shape + [num_rows, num_columns]
的Tensor
另见tf.ones
、tf.zeros
、tf.fill
、tf.one_hot
。
# Construct one identity matrix.
tf.eye(2)
==> [[1., 0.],
[0., 1.]]
# Construct a batch of 3 identity matrices, each 2 x 2.
# batch_identity[i,:,:] is a 2 x 2 identity matrix, i = 0, 1, 2.
batch_identity = tf.eye(2, batch_shape=[3])
# Construct one 2 x 3 "identity" matrix
tf.eye(2, num_columns=3)
==> [[ 1., 0., 0.],
[ 0., 1., 0.]]
相关用法
- Python tf.experimental.dlpack.from_dlpack用法及代码示例
- Python tf.errors.InvalidArgumentError用法及代码示例
- Python tf.experimental.numpy.iinfo用法及代码示例
- Python tf.estimator.TrainSpec用法及代码示例
- Python tf.experimental.Optional.has_value用法及代码示例
- Python tf.estimator.LogisticRegressionHead用法及代码示例
- Python tf.experimental.dispatch_for_unary_elementwise_apis用法及代码示例
- Python tf.experimental.dispatch_for_api用法及代码示例
- Python tf.estimator.MultiHead用法及代码示例
- Python tf.experimental.unregister_dispatch_for用法及代码示例
- Python tf.edit_distance用法及代码示例
- Python tf.estimator.PoissonRegressionHead用法及代码示例
- Python tf.estimator.WarmStartSettings用法及代码示例
- Python tf.experimental.tensorrt.Converter用法及代码示例
- Python tf.estimator.experimental.stop_if_lower_hook用法及代码示例
- Python tf.estimator.RunConfig用法及代码示例
- Python tf.experimental.ExtensionType用法及代码示例
- Python tf.estimator.MultiLabelHead用法及代码示例
- Python tf.experimental.Optional.get_value用法及代码示例
- Python tf.estimator.experimental.stop_if_no_increase_hook用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.eye。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。