Adriano D.
Adriano D.
I have added support to MobileSAM which can be used to experience a snappier Gradio interface as it runs faster on cpu than the original SAM. During tracking it does...
Hello! Thanks for your work, I have modified your code to support device switching with `--device` flag. I changed the code to move tensors to correct device accordingly. These changes...
Hi, thanks for your code. In the last few days I worked on a finetuned version on COCO + feet dataset (25 keypoints skeleton like openpose) with easy and fast...
Training preprocessing is missing during inference where images are only set to [0, 1] range but not normalized using mean / std. Inference code: https://github.com/jaehyunnn/ViTPose_pytorch/blob/1bd3cc3982d5b976622df54bcdc2106bb16e6d16/inference.py#L46-L48 Training code: https://github.com/jaehyunnn/ViTPose_pytorch/blob/1bd3cc3982d5b976622df54bcdc2106bb16e6d16/datasets/COCO.py#L119-L122 Reference from...