Connor Anderson
Connor Anderson
In `bilinear_attention_pooling` the pooled features are multiplied by 100. Why is that?
It looks like there's a subtle bug on this line: https://github.com/AntixK/PyTorch-Model-Compare/blob/main/torch_cka/cka.py#L156 ``` num_batches = min(len(dataloader1), len(dataloader1)) ``` `len(dataloader1)` is in there twice, I assume it's supposed to be ``` num_batches...
See the following code, taken from `generate_map` in `sss_net.py`: ```python if p == 0: for i in peak_num: temp += score[i] * kernel_generate(self.radius(torch.sqrt(score[i])), H, (x[i].item(), y[i].item())).unsqueeze(0).unsqueeze(0).cuda() temp_w += 1/score[i] *...
I'm trying to set up a workspace for vot2019/rgbtir, but the tool fails to download the data. I get "FIle not available" messages for each sequence: ``` Traceback (most recent...