返回值的直方圖。
用法
tf.histogram_fixed_width(
values, value_range, nbins=100, dtype=tf.dtypes.int32, name=None
)
參數
-
values
數字Tensor
。 -
value_range
形狀 [2]Tensor
與dtype
與values
相同。 values = value_range[1] 將被映射到 hist[-1]。 -
nbins
標量int32 Tensor
。直方圖箱的數量。 -
dtype
返回直方圖的 dtype。 -
name
此操作的名稱(默認為 'histogram_fixed_width')。
返回
-
一維
Tensor
保存值的直方圖。
拋出
-
TypeError
如果提供了任何不受支持的 dtype。 - tf.errors.InvalidArgumentError 如果 value_range 不滿足 value_range[0] < value_range[1]。
給定張量 values
,此操作返回排名 1 的直方圖,計算 values
中落入每個 bin 的條目數。 bin 的寬度相等,由參數 value_range
和 nbins
確定。
例子:
# Bins will be: (-inf, 1), [1, 2), [2, 3), [3, 4), [4, inf)
nbins = 5
value_range = [0.0, 5.0]
new_values = [-1.0, 0.0, 1.5, 2.0, 5.0, 15]
hist = tf.histogram_fixed_width(new_values, value_range, nbins=5)
hist.numpy()
array([2, 1, 1, 0, 2], dtype=int32)
相關用法
- Python tf.histogram_fixed_width_bins用法及代碼示例
- 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用法及代碼示例
- Python tf.keras.layers.InputLayer用法及代碼示例
- Python tf.compat.v1.strings.length用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.histogram_fixed_width。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。