fanq15 / FewX

FewX is an open-source toolbox on top of Detectron2 for data-limited instance-level recognition tasks.
https://github.com/fanq15/FewX
MIT License
346 stars 48 forks source link

About query images and support images #62

Open xiaofeng-c opened 3 years ago

xiaofeng-c commented 3 years ago

If the support images include the query images in your codes,because when i use 5-way-10-shot to test,i find the 10 support images include the query image one,and if it means that use 9 images to support 1 query images?

fanq15 commented 2 years ago

The support images do not include the query image. I use the 1-way 10-shot training as an example. In the base training stage, there are 10 support images and 1 query image. In the novel fine-tuning stage, there are 9 support images and 1 query image.

dreamwish1998 commented 2 years ago

The support images do not include the query image. I use the 1-way 10-shot training as an example. In the base training stage, there are 10 support images and 1 query image. In the novel fine-tuning stage, there are 9 support images and 1 query image.

What form does the input take if it is a one-shot fine-tuning stage? thank you very much!