计算精度 >= 指定值的最佳召回率。
用法
tf.keras.metrics.RecallAtPrecision(
precision, num_thresholds=200, class_id=None, name=None, dtype=None
)
参数
-
precision
范围[0, 1]
中的标量值。 -
num_thresholds
(可选)默认为 200。用于匹配给定精度的阈值数。 -
class_id
(可选)我们想要二进制度量的整数类 ID。这必须在半开区间[0, num_classes)
中,其中num_classes
是预测的最后一个维度。 -
name
(可选)指标实例的字符串名称。 -
dtype
(可选)度量结果的数据类型。
对于给定的score-label-distribution,可能无法实现所需的精度,在这种情况下,0.0 作为召回返回。
该指标创建四个局部变量,true_positives
, true_negatives
, false_positives
和 false_negatives
,用于计算给定精度的召回率。计算给定精度值的阈值并用于评估相应的召回率。
如果 sample_weight
是 None
,则权重默认为 1。使用 0 的 sample_weight
来屏蔽值。
如果指定了class_id
,我们通过仅考虑批次中class_id
高于阈值预测的条目来计算精度,并计算其中class_id
确实是正确标签的部分。
单机使用:
m = tf.keras.metrics.RecallAtPrecision(0.8)
m.update_state([0, 0, 1, 1], [0, 0.5, 0.3, 0.9])
m.result().numpy()
0.5
m.reset_state()
m.update_state([0, 0, 1, 1], [0, 0.5, 0.3, 0.9],
sample_weight=[1, 0, 0, 1])
m.result().numpy()
1.0
compile()
API 的用法:
model.compile(
optimizer='sgd',
loss='mse',
metrics=[tf.keras.metrics.RecallAtPrecision(precision=0.8)])
相关用法
- Python tf.keras.metrics.RecallAtPrecision.merge_state用法及代码示例
- Python tf.keras.metrics.Recall.merge_state用法及代码示例
- Python tf.keras.metrics.Recall用法及代码示例
- Python tf.keras.metrics.RootMeanSquaredError用法及代码示例
- Python tf.keras.metrics.RootMeanSquaredError.merge_state用法及代码示例
- Python tf.keras.metrics.Mean.merge_state用法及代码示例
- Python tf.keras.metrics.Hinge用法及代码示例
- Python tf.keras.metrics.SparseCategoricalAccuracy.merge_state用法及代码示例
- Python tf.keras.metrics.SparseCategoricalCrossentropy.merge_state用法及代码示例
- Python tf.keras.metrics.sparse_categorical_accuracy用法及代码示例
- Python tf.keras.metrics.FalseNegatives用法及代码示例
- Python tf.keras.metrics.TrueNegatives用法及代码示例
- Python tf.keras.metrics.SpecificityAtSensitivity用法及代码示例
- Python tf.keras.metrics.Mean用法及代码示例
- Python tf.keras.metrics.poisson用法及代码示例
- Python tf.keras.metrics.LogCoshError用法及代码示例
- Python tf.keras.metrics.MeanSquaredLogarithmicError用法及代码示例
- Python tf.keras.metrics.FalsePositives.merge_state用法及代码示例
- Python tf.keras.metrics.OneHotMeanIoU.merge_state用法及代码示例
- Python tf.keras.metrics.TopKCategoricalAccuracy用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.keras.metrics.RecallAtPrecision。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。