計算標簽和預測之間的餘弦相似度。
用法
tf.keras.losses.cosine_similarity(
y_true, y_pred, axis=-1
)
參數
-
y_true
真實目標的張量。 -
y_pred
預測目標的張量。 -
axis
沿其確定相似性的軸。
返回
- 餘弦相似度張量。
請注意,它是介於 -1 和 1 之間的數字。當它是介於 -1 和 0 之間的負數時,0 表示正交性,接近 -1 的值表示更大的相似性。接近 1 的值表示更大的差異。這使得它可以在您嘗試最大化預測和目標之間的接近度的設置中用作損失函數。如果 y_true
或 y_pred
是零向量,則無論預測與目標之間的接近程度如何,餘弦相似度都將為 0。
loss = -sum(l2_norm(y_true) * l2_norm(y_pred))
單機使用:
y_true = [[0., 1.], [1., 1.], [1., 1.]]
y_pred = [[1., 0.], [1., 1.], [-1., -1.]]
loss = tf.keras.losses.cosine_similarity(y_true, y_pred, axis=1)
loss.numpy()
array([-0., -0.999, 0.999], dtype=float32)
相關用法
- Python tf.keras.losses.categorical_hinge用法及代碼示例
- Python tf.keras.losses.MeanAbsoluteError用法及代碼示例
- Python tf.keras.losses.huber用法及代碼示例
- Python tf.keras.losses.log_cosh用法及代碼示例
- Python tf.keras.losses.BinaryCrossentropy用法及代碼示例
- Python tf.keras.losses.BinaryFocalCrossentropy用法及代碼示例
- Python tf.keras.losses.Huber用法及代碼示例
- Python tf.keras.losses.LogCosh用法及代碼示例
- Python tf.keras.losses.MeanAbsolutePercentageError用法及代碼示例
- Python tf.keras.losses.get用法及代碼示例
- Python tf.keras.losses.CosineSimilarity用法及代碼示例
- Python tf.keras.losses.Hinge用法及代碼示例
- Python tf.keras.losses.SparseCategoricalCrossentropy用法及代碼示例
- Python tf.keras.losses.KLDivergence用法及代碼示例
- Python tf.keras.losses.MeanSquaredLogarithmicError用法及代碼示例
- Python tf.keras.losses.CategoricalCrossentropy用法及代碼示例
- Python tf.keras.losses.MeanSquaredError用法及代碼示例
- Python tf.keras.losses.SquaredHinge用法及代碼示例
- Python tf.keras.losses.Poisson用法及代碼示例
- Python tf.keras.losses.CategoricalHinge用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.keras.losses.cosine_similarity。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。