Hello, thank you for your excellent open-source work, I hava a question about feat_store and test_feat on task zeroshot_seg.
First, feat_store is generated by
torch.save(feat_store, os.path.join(save_path, "{}_features.pt".format(mode)))torch.Size([14, 10, 512, 14, 14])
14 is batch,10 is num of views, 512, is channel of feature dim, and image width is 14*14
Hello, thank you for your excellent open-source work, I hava a question about feat_store and test_feat on task zeroshot_seg.
First, feat_store is generated by
torch.save(feat_store, os.path.join(save_path, "{}_features.pt".format(mode)))
torch.Size([14, 10, 512, 14, 14])
14 is batch,10 is num of views, 512, is channel of feature dim, and image width is 14*14Then,
test_feat = test_feat.reshape(-1, 10, 196, 512)
Why is it not necessary to move the features to the last dimension?