Closed kangkang59812 closed 5 years ago
The code expects images in RGB
format, in 0-1 range, as the other models in the torchvision modelzoo. This is the setup where the models were trained, and I would expect that in general it would give best performances.
pytorch>=1.1
I notice that both the RGB and BGR input of
[n,c,h,w]
can get a good result(BGR is slightly higher).It seems that
predictions2
is better. So, should I use the BGR format to fine-tuning and eval ? I can't find this information in the code and I only know the size is[n,c,h,w]
. In the config of the detectron2 of facebook, it saysSo BGR is the one we should choose?