569 B
569 B
Summary
- If the inference node works on the whole frame, let it derived from
vp_primary_infer_nodeclass. - If the inference node works on the small cropped images, let it derived from
vp_secondary_infer_nodeclass. - We can define multi derived classes to handle different types of dl models (
detector/pose estimation/classification). Also, if they work on the same type of target AND with the same logic (for example, hava the samepreprocess/postprocess), we can use a unique class to load different deep learning models (like resnet18 and resnet50).