-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AC: add automatic model search for OpenCV launcher #3443
base: master
Are you sure you want to change the base?
AC: add automatic model search for OpenCV launcher #3443
Conversation
Can one of the admins verify this patch? |
Jenkins please retry a build |
from collections import OrderedDict | ||
import numpy as np | ||
import cv2 | ||
from pathlib import Path |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from collections import OrderedDict | |
import numpy as np | |
import cv2 | |
from pathlib import Path | |
from collections import OrderedDict | |
from pathlib import Path | |
import numpy as np | |
import cv2 |
weights_list = [] | ||
if model.suffix == '.xml': | ||
weights = Path(weights_dir) / model.name.replace('xml', 'bin') | ||
print(weights) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if it is debig print, please remove or if it is necessary thing, please replace print to print_info
pre-commit check failed |
aa99dca
to
6602fb9
Compare
Jenkins ok to test |
This PR allows to find models automatically while running Accuracy Checker via OpenCV launcher