Source code for src.qap_solvers.rrwm

import torch
import torch.nn as nn

from src.lap_solvers.sinkhorn import Sinkhorn as Sinkhorn


[docs]class RRWM(nn.Module): """ RRWM solver for graph matching (QAP), implemented by power iteration with Sinkhorn reweighted jumps. Parameter: maximum iteration max_iter Input: input matrix M maximum size of source graph num_src sizes of source graph in batch ns_src sizes of target graph in batch ns_tgt (optional) initialization vector v0. If not specified, v0 will be initialized with all 1. Output: computed eigenvector v """ def __init__(self, max_iter=50, sk_iter=20, alpha=0.2, beta=30): super(RRWM, self).__init__() self.max_iter = max_iter self.alpha = alpha self.beta = beta self.sk = Sinkhorn(max_iter=sk_iter)
[docs] def forward(self, M, num_src, ns_src, ns_tgt, v0=None): d = M.sum(dim=2, keepdim=True) dmax = d.max(dim=1, keepdim=True).values M = M / (dmax + d.min() * 1e-5) batch_num = M.shape[0] mn = M.shape[1] if v0 is None: v0 = torch.zeros(batch_num, num_src, mn // num_src, dtype=M.dtype, device=M.device) for b in range(batch_num): v0[b, 0:ns_src[b], 0:ns_tgt[b]] = torch.tensor(1.) / (ns_src[b] * ns_tgt[b]) v0 = v0.transpose(1, 2).reshape(batch_num, mn, 1) v = v0 for i in range(self.max_iter): v = torch.bmm(M, v) last_v = v n = torch.norm(v, p=1, dim=1, keepdim=True) v = v / n s = v.view(batch_num, -1, num_src).transpose(1, 2) s = torch.exp(self.beta * s / s.max(dim=1, keepdim=True).values.max(dim=2, keepdim=True).values) v = self.alpha * self.sk(torch.log(s), ns_src, ns_tgt).transpose(1, 2).reshape(batch_num, mn, 1) + (1 - self.alpha) * v n = torch.norm(v, p=1, dim=1, keepdim=True) v = torch.matmul(v, 1 / n) if torch.norm(v - last_v) < 1e-5: break return v.view(batch_num, -1)