dangraysf
Results
1
comments of
dangraysf
Hi David, Just a guess but look here in `models.py` (lines 323-336). ``` if args.search: self.orientation_scores2 = nn.Sequential( nn.Linear(I, O), nn.LeakyReLU(negative_slope=0.2), nn.Linear(O, 1), ) self.conv2 = dMaSIFConv_seg( args, in_channels=I, out_channels=E,...