Created
September 20, 2018 08:54
-
-
Save yunjey/3105146c736f9c1055463c33b4c989da to your computer and use it in GitHub Desktop.
pytorch implementation of contextual loss: https://arxiv.org/abs/1803.02077
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def contextual_loss(x, y, h=0.5): | |
"""Computes contextual loss between x and y. | |
Args: | |
x: features of shape (N, C, H, W). | |
y: features of shape (N, C, H, W). | |
Returns: | |
cx_loss = contextual loss between x and y (Eq (1) in the paper) | |
""" | |
assert x.size() == y.size() | |
N, C, H, W = x.size() # e.g., 10 x 512 x 14 x 14. In this case, the number of points is 196 (14x14). | |
y_mu = y.mean(3).mean(2).mean(0).reshape(1, -1, 1, 1) | |
x_centered = x - y_mu | |
y_centered = y - y_mu | |
x_normalized = x_centered / torch.norm(x_centered, p=2, dim=1, keepdim=True) | |
y_normalized = y_centered / torch.norm(y_centered, p=2, dim=1, keepdim=True) | |
# The equation at the bottom of page 6 in the paper | |
# Vectorized computation of cosine similarity for each pair of x_i and y_j | |
x_normalized = x_normalized.reshape(N, C, -1) # (N, C, H*W) | |
y_normalized = y_normalized.reshape(N, C, -1) # (N, C, H*W) | |
cosine_sim = torch.bmm(x_normalized.transpose(1, 2), y_normalized) # (N, H*W, H*W) | |
d = 1 - cosine_sim # (N, H*W, H*W) d[n, i, j] means d_ij for n-th data | |
d_min, _ = torch.min(d, dim=2, keepdim=True) # (N, H*W, 1) | |
# Eq (2) | |
d_tilde = d / (d_min + 1e-5) | |
# Eq(3) | |
w = torch.exp((1 - d_tilde) / h) | |
# Eq(4) | |
cx_ij = w / torch.sum(w, dim=2, keepdim=True) # (N, H*W, H*W) | |
# Eq (1) | |
cx = torch.mean(torch.max(cx_ij, dim=1)[0], dim=1) # (N, ) | |
cx_loss = torch.mean(-torch.log(cx + 1e-5)) | |
return cx_loss |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment