計算 y_true
和 y_pred
之間的分類鉸鏈度量。
繼承自:MeanMetricWrapper
、Mean
、Metric
、Layer
、Module
用法
tf.keras.metrics.CategoricalHinge(
name='categorical_hinge', dtype=None
)
參數
-
name
(可選)指標實例的字符串名稱。 -
dtype
(可選)度量結果的數據類型。
單機使用:
m = tf.keras.metrics.CategoricalHinge()
m.update_state([[0, 1], [0, 0]], [[0.6, 0.4], [0.4, 0.6]])
m.result().numpy()
1.4000001
m.reset_state()
m.update_state([[0, 1], [0, 0]], [[0.6, 0.4], [0.4, 0.6]],
sample_weight=[1, 0])
m.result().numpy()
1.2
compile()
API 的用法:
model.compile(
optimizer='sgd',
loss='mse',
metrics=[tf.keras.metrics.CategoricalHinge()])
相關用法
- Python tf.keras.metrics.CategoricalHinge.merge_state用法及代碼示例
- Python tf.keras.metrics.CategoricalAccuracy.merge_state用法及代碼示例
- Python tf.keras.metrics.CategoricalAccuracy用法及代碼示例
- Python tf.keras.metrics.CategoricalCrossentropy用法及代碼示例
- Python tf.keras.metrics.CategoricalCrossentropy.merge_state用法及代碼示例
- Python tf.keras.metrics.CosineSimilarity.merge_state用法及代碼示例
- Python tf.keras.metrics.CosineSimilarity用法及代碼示例
- Python tf.keras.metrics.Mean.merge_state用法及代碼示例
- Python tf.keras.metrics.Hinge用法及代碼示例
- Python tf.keras.metrics.SparseCategoricalAccuracy.merge_state用法及代碼示例
- Python tf.keras.metrics.RootMeanSquaredError用法及代碼示例
- 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.RecallAtPrecision.merge_state用法及代碼示例
- Python tf.keras.metrics.SpecificityAtSensitivity用法及代碼示例
- Python tf.keras.metrics.Mean用法及代碼示例
- Python tf.keras.metrics.poisson用法及代碼示例
- Python tf.keras.metrics.LogCoshError用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.keras.metrics.CategoricalHinge。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。