imprinted-weights icon indicating copy to clipboard operation
imprinted-weights copied to clipboard

Code for 'Low-Shot Learning with Imprinted Weights'

Results 3 imprinted-weights issues
Sort by recently updated
recently updated
newest added

Hi, Is the magic number[100] in new_weight a class number? new_weight = torch.zeros(100, d_emb) for i in range(100): tmp = output_stack[target_stack == (i + 100)].mean(0) if not random else torch.randn(d_emb,...

It seems that you pre-train the model with all the training images, including the base and novel classes. I argue it is unfair to use the novel classes to train...

Hi, I just wanted to ask about num_classes adjustment. If I want to use 120 classes as base and 80 as novel, what should the num_classes value be in models.py