SwinTransformer / Video-Swin-Transformer

This is an official implementation for "Video Swin Transformers".
https://arxiv.org/abs/2106.13230
Apache License 2.0
1.45k stars 200 forks source link

area_range in RandomResizedCrop? #47

Open dragen1860 opened 2 years ago

dragen1860 commented 2 years ago

Dear author: I noticed the default area_range in RandomResizedCrop in (0.08, 1.0), which is not appropriate for video recognition when area_range is too small. I guess we need to specify the area_range like this:

dict(type='RandomResizedCrop', area_range=(0.75, 1.0))

anyone realized it? or i got wroong. thank you.