tymanman

Results 7 issues of tymanman

I found that you give a split of minival set which is not consistent with the original split of official set.Why do u do like this,thank u .

``` for feat in feats: next_tag_var = ( forward_var.view(1, -1).expand(self.tagset_size, self.tagset_size) + self.transitions ) _, bptrs_t = torch.max(next_tag_var, dim=1) viterbivars_t = next_tag_var[range(len(bptrs_t)), bptrs_t] forward_var = viterbivars_t + feat backscores.append(forward_var) backpointers.append(bptrs_t)...

Hi, In the Table 2 of the paper, you compare the average ap of mutiple runs of 10 seeds with the results given by TFA which is a average one...

I followed the guidance of README (without any change) to pretrain a base model and then randomly initilize the novel weights, finally finetune it.But I get a best result of...

Hi, I find that the config files of experiments on COCO datasets you provide is based on the strong baseline mentioned in the paper? So the contrastive loss does not...

I have retried your project on the MOT17 evaluation metric,but I got a little lower score than you,why?