loss_npairs: Npairs loss

Description Usage Arguments Details Value

View source: R/losses.R

Description

Computes the npairs loss between 'y_true' and 'y_pred'.

Usage

1
loss_npairs(name = "npairs_loss")

Arguments

name

Optional name for the op.

Details

Npairs loss expects paired data where a pair is composed of samples from the same labels and each pairs in the minibatch have different labels. The loss takes each row of the pair-wise similarity matrix, 'y_pred', as logits and the remapped multi-class labels, 'y_true', as labels. The similarity matrix 'y_pred' between two embedding matrices 'a' and 'b' with shape '[batch_size, hidden_size]' can be computed as follows: “' # y_pred = a * b^T y_pred = tf$matmul(a, b, transpose_a=FALSE, transpose_b=TRUE) “' See: http://www.nec-labs.com/uploads/images/Department-Images/MediaAnalytics/papers/nips16_npairmetriclearning.pdf

Value

npairs_loss: float scalar.


tfaddons documentation built on July 2, 2020, 2:12 a.m.