PANet icon indicating copy to clipboard operation
PANet copied to clipboard

Multi-Scale Testing Support

Open Karthik-Suresh93 opened this issue 5 years ago • 2 comments

Thank you for your amazing work. I notice that we can only provide one test scale in the config. Is it possible to provide multi-scale testing support or steps to be followed to implement it? Also, can you please explain what you mean by bounding box augmentation during test time? Thank you very much

Karthik-Suresh93 avatar Dec 03 '18 22:12 Karthik-Suresh93

This codebase is heavily based on the Detectron.pytorch, which supports the multi-scale testing. So you can also conduct multi-scale testing with this codebase by adding more scales to the config file, although I didn't try this.

ShuLiu1993 avatar Dec 14 '18 05:12 ShuLiu1993

You just need to enable TEST.{task}_AUG and specify the scales you want to test on in the config yaml file.

According to the explanation given in this issue, the predictions for each image at test time are computed at all scales specified by TEST.SCALES + TEST.{task}_AUG.SCALES (see here) and combined using one of the available heuristics.

ashnair1 avatar Apr 29 '19 08:04 ashnair1