Hao Li
Hao Li
In line **138** : ```python M = cv2.moments(contour) ``` **Error**: ```bash -210:Unsupported format or combination of formats) in function 'moments' ``` **solution**: ```python M = cv2.moments(contour, 1) ```
I tried to finetune SimMIM pre-trained Swin-V2 model following the [get_started.md](https://github.com/microsoft/Swin-Transformer/blob/main/get_started.md#simmim-support): ```bash python -m torch.distributed.launch --nproc_per_node 16 main_simmim_ft.py \ --cfg configs/simmim/simmim_finetune__swin_base__img224_window7__800ep.yaml --batch-size 128 --data-path --pretrained [--output --tag ] ``` The...
Thanks for your wonderful work. Is it possible to train the model using multiple gpus?