dlgm
dlgm copied to clipboard
Implementation of the paper 'Deep Learning of Graph Matching', CVPR 2018.
Hello, I tried running the command `python main.py --dataset sintel --data_path ~/Desktop/jug-pc-x/05_Repositories/dlgm/` and run into the following error. Any suggestions on what could be the issue? (I have cudatoolkit 9.0...
Hello, In the **main.py/class VGG_graph_matching/biStochastic_forward()** function: ``` S = v.view(n,m) for i in range(N): S = torch.mm(S, torch.mm(torch.ones(1,n),S).inverse()) S = torch.mm(torch.mv(S, torch.ones(m,1)).inverse(), S) return S ``` The **A.inverse()** function need...