| |
| |
| |
| |
| |
| |
| |
|
|
| import torch |
| import torch.nn.functional as F |
| from torch.autograd import Variable |
| from math import exp |
| from scipy.spatial import cKDTree |
|
|
| def l1_loss(network_output, gt): |
| return torch.abs((network_output - gt)).mean() |
|
|
| def masked_l1_loss(network_output, gt, mask): |
| mask = mask.float()[None,:,:].repeat(gt.shape[0],1,1) |
| loss = torch.abs((network_output - gt)) * mask |
| loss = loss.sum() / mask.sum() |
| return loss |
|
|
| def weighted_l1_loss(network_output, gt, weight): |
| loss = torch.abs((network_output - gt)) * weight |
| return loss.mean() |
|
|
| def l2_loss(network_output, gt): |
| return ((network_output - gt) ** 2).mean() |
|
|
| def gaussian(window_size, sigma): |
| gauss = torch.Tensor([exp(-(x - window_size // 2) ** 2 / float(2 * sigma ** 2)) for x in range(window_size)]) |
| return gauss / gauss.sum() |
|
|
| def create_window(window_size, channel): |
| _1D_window = gaussian(window_size, 1.5).unsqueeze(1) |
| _2D_window = _1D_window.mm(_1D_window.t()).float().unsqueeze(0).unsqueeze(0) |
| window = Variable(_2D_window.expand(channel, 1, window_size, window_size).contiguous()) |
| return window |
|
|
| def ssim(img1, img2, window_size=11, size_average=True): |
| channel = img1.size(-3) |
| window = create_window(window_size, channel) |
|
|
| if img1.is_cuda: |
| window = window.cuda(img1.get_device()) |
| window = window.type_as(img1) |
|
|
| return _ssim(img1, img2, window, window_size, channel, size_average) |
|
|
| def _ssim(img1, img2, window, window_size, channel, size_average=True): |
| mu1 = F.conv2d(img1, window, padding=window_size // 2, groups=channel) |
| mu2 = F.conv2d(img2, window, padding=window_size // 2, groups=channel) |
|
|
| mu1_sq = mu1.pow(2) |
| mu2_sq = mu2.pow(2) |
| mu1_mu2 = mu1 * mu2 |
|
|
| sigma1_sq = F.conv2d(img1 * img1, window, padding=window_size // 2, groups=channel) - mu1_sq |
| sigma2_sq = F.conv2d(img2 * img2, window, padding=window_size // 2, groups=channel) - mu2_sq |
| sigma12 = F.conv2d(img1 * img2, window, padding=window_size // 2, groups=channel) - mu1_mu2 |
|
|
| C1 = 0.01 ** 2 |
| C2 = 0.03 ** 2 |
|
|
| ssim_map = ((2 * mu1_mu2 + C1) * (2 * sigma12 + C2)) / ((mu1_sq + mu2_sq + C1) * (sigma1_sq + sigma2_sq + C2)) |
|
|
| if size_average: |
| return ssim_map.mean() |
| else: |
| return ssim_map.mean(1).mean(1).mean(1) |
|
|
|
|
| def loss_cls_3d(features, predictions, k=5, lambda_val=2.0, max_points=200000, sample_size=800): |
| """ |
| Compute the neighborhood consistency loss for a 3D point cloud using Top-k neighbors |
| and the KL divergence. |
| |
| :param features: Tensor of shape (N, D), where N is the number of points and D is the dimensionality of the feature. |
| :param predictions: Tensor of shape (N, C), where C is the number of classes. |
| :param k: Number of neighbors to consider. |
| :param lambda_val: Weighting factor for the loss. |
| :param max_points: Maximum number of points for downsampling. If the number of points exceeds this, they are randomly downsampled. |
| :param sample_size: Number of points to randomly sample for computing the loss. |
| |
| :return: Computed loss value. |
| """ |
| |
| if features.size(0) > max_points: |
| indices = torch.randperm(features.size(0))[:max_points] |
| features = features[indices] |
| predictions = predictions[indices] |
|
|
|
|
| |
| indices = torch.randperm(features.size(0))[:sample_size] |
| sample_features = features[indices] |
| sample_preds = predictions[indices] |
|
|
| |
| dists = torch.cdist(sample_features, features) |
| _, neighbor_indices_tensor = dists.topk(k, largest=False) |
|
|
| |
| neighbor_preds = predictions[neighbor_indices_tensor] |
|
|
| |
| kl = sample_preds.unsqueeze(1) * (torch.log(sample_preds.unsqueeze(1) + 1e-10) - torch.log(neighbor_preds + 1e-10)) |
| loss = kl.sum(dim=-1).mean() |
|
|
| |
| num_classes = predictions.size(1) |
| normalized_loss = loss / num_classes |
|
|
| return lambda_val * normalized_loss |
|
|
|
|
|
|
|
|
|
|