SysCV / qdtrack

Quasi-Dense Similarity Learning for Multiple Object Tracking, CVPR 2021 (Oral)
Apache License 2.0
384 stars 61 forks source link

Is customization of backbone possible as mentioned in the mmdet library ? #91

Closed AmanGoyal99 closed 2 years ago

AmanGoyal99 commented 3 years ago

Kindly let me know if customization of backbone as mentioned in mmdet library could be used with qdtrack as well ?

LInk : https://github.com/open-mmlab/mmdetection/blob/master/docs/tutorials/customize_models.md#add-a-new-backbone

OceanPang commented 3 years ago

Yes, you can do it following the instruction.

AmanGoyal99 commented 3 years ago

Yes, you can do it following the instruction.

But in order to use my customized backbone in mmdet library, would I have to then build mmdet from github repository ? @OceanPang

OceanPang commented 3 years ago

You can directly do it in qdtrack's codebase, but registry the model into the same Registry.

AmanGoyal99 commented 3 years ago

What do you mean by same registry ? @OceanPang Also how should I do it directly in qdtrack's codebase? Won't I require to add customized model in mmdet then as mentioned in this link : https://github.com/open-mmlab/mmdetection/blob/master/docs/tutorials/customize_models.md#add-a-new-backbone

You can directly do it in qdtrack's codebase, but registry the model into the same Registry.

OceanPang commented 3 years ago

Refer to here.