haofanwang / CLIFF

This repo equips the official CLIFF [ECCV 2022 Oral] with better detector, better tracker. Support multi-person, motion interpolation, motion smooth and SMPLify fitting.
Apache License 2.0
147 stars 16 forks source link

Real time processing #12

Closed SonNguyen2510 closed 10 months ago

SonNguyen2510 commented 1 year ago

Dear author,

Thank you for your amazing work. Is your method able to run in real-time? I try to run your demo but there is error in mmdetection config file: obj = obj_cls(**args) # type: ignore TypeError: __init__() got an unexpected keyword argument 'input_size' Can you upload the config file for this detection model:

        config = './mmdetection/configs/yolox/yolox_x_8x8_300e_coco.py'
        checkpoint = './mmdetection/checkpoints/yolox_x_8x8_300e_coco_20211126_140254-1ef88d67.pth'
moonbow721 commented 1 year ago

Dear author,

Thank you for your amazing work. Is your method able to run in real-time? I try to run your demo but there is error in mmdetection config file: obj = obj_cls(**args) # type: ignore TypeError: __init__() got an unexpected keyword argument 'input_size' Can you upload the config file for this detection model:

        config = './mmdetection/configs/yolox/yolox_x_8x8_300e_coco.py'
        checkpoint = './mmdetection/checkpoints/yolox_x_8x8_300e_coco_20211126_140254-1ef88d67.pth'

Hi, I have encountered this error before. This may be related to the version of mmdetection (try to use an older version). The following versions work with torch 1.12.1 on my environment. mmcv-full 1.7.1 mmdet 2.26.0 mmengine 0.8.4