open_model_zoo
open_model_zoo copied to clipboard
[AC]: fix model search issue
fix model search issue
when try to execute the accuracy_check locally, the program can't find the specific model file in the custom model directory. The reason is Path.glob(*abc) cannot search the directories recursively. So just use the Path.rglob(*abc) can solve this problem.
@eaidova Could you help review this PR if free? Thanks.