创建一个与输入具有相同形状的所有张量。
用法
tf.ones_like(
input, dtype=None, name=None
)
参数
-
input
一个Tensor
。 -
dtype
返回的Tensor
的类型。必须是float16
,float32
,float64
,int8
,uint8
,int16
,uint16
,int32
,int64
,complex64
,complex128
,bool
或string
。 -
name
操作的名称(可选)。
返回
-
一个
Tensor
,所有元素都设置为一个。
另见tf.ones
。
给定单个张量 (tensor
),此操作返回与 tensor
具有相同类型和形状的张量,所有元素都设置为 1。您可以选择使用 dtype
为返回的张量指定新类型。
例如:
tensor = tf.constant([[1, 2, 3], [4, 5, 6]])
tf.ones_like(tensor)
<tf.Tensor:shape=(2, 3), dtype=int32, numpy=
array([[1, 1, 1],
[1, 1, 1]], dtype=int32)>
相关用法
- Python tf.ones_initializer.from_config用法及代码示例
- Python tf.ones用法及代码示例
- Python tf.one_hot用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python tf.compat.v1.Variable.eval用法及代码示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代码示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代码示例
- Python tf.math.special.fresnel_cos用法及代码示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代码示例
- Python tf.compat.v1.layers.conv3d用法及代码示例
- Python tf.Variable.__lt__用法及代码示例
- Python tf.keras.metrics.Mean.merge_state用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.ones_like。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。