`detect-inception` test uses outdated model, needs update
rahulchaphalkar opened this issue · 0 comments
The test detect-inception
uses inception-ssd
model, and was based on the object_detection_sample_ssd
demo/sample from openvino. This demo was removed in 2021.
While updating openvino c api from 1.0 to 2.0 in this PR, since openvino-sys
crate is updated to have a more recent version of openvino, this test is not ideal. We need to use models compatible with recent openvino version, and I cannot download inception-ssd
model with omz_downloader
.
I propose we replace detect-inception
(based on object_detection_sample_ssd
) with a new test based on hello_reshape_ssd
and a validated model person-detection-retail-0013. Its a good candidate which does have Preprocess operations (layout, resize, etc.).
I'll update on the details of this new test here.