-
Notifications
You must be signed in to change notification settings - Fork 36
ITEP-81114: Update set of models used in model downloader script #1022
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
Merged
Merged
Changes from 4 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
3abf780
ITEP-81114: Update set of models used in model downloader script
MikolajKasprzak 811a546
Merge branch 'main' into ITEP-81114
MikolajKasprzak a42429d
fix
MikolajKasprzak 4ab06b5
Merge branch 'main' into ITEP-81114
MikolajKasprzak 584d312
remove redundant flags and vars from model installer
MikolajKasprzak ae7183c
Merge branch 'main' into ITEP-81114
MikolajKasprzak fba9f80
Apply suggestion from @saratpoluri
MikolajKasprzak 3d6d2c8
Merge branch 'main' into ITEP-81114
tdorauintc e52f68a
Merge branch 'main' into ITEP-81114
saratpoluri ac69703
Merge branch 'main' into ITEP-81114
scenescapecicd cde0fbb
Merge branch 'main' into ITEP-81114
scenescapecicd 1538590
Merge branch 'main' into ITEP-81114
scenescapecicd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -19,47 +19,26 @@ OVMS_MODEL_DIR = os.path.join(MODEL_DIR, "ovms") | |||
| MODEL_CACHE_DIR = os.path.join(OVMS_MODEL_DIR, "cache") | ||||
| OVMS_CONFIGFILE = f"{MODEL_DIR}/ovms-config.json" | ||||
| OMZ_BASE_URL = "https://storage.openvinotoolkit.org/repositories/open_model_zoo/2023.0/models_bin/1" | ||||
| # Special case: some public models have a different base URL | ||||
| MODEL_BASE_URLS = { | ||||
| "text-recognition-resnet-fc": "https://storage.openvinotoolkit.org/repositories/open_model_zoo/public/text-recognition-resnet-fc" | ||||
| } | ||||
| # Special case: some public models may have a different base URL | ||||
| MODEL_BASE_URLS = {} | ||||
| MODEL_PROC_FOLDER_URL = "https://raw.githubusercontent.com/open-edge-platform/edge-ai-libraries/refs/heads/release-2025.2.0/libraries/dl-streamer/samples/gstreamer/model_proc/intel/" | ||||
|
|
||||
| _DEFAULT_MODELS = [ | ||||
| 'person-detection-retail-0013', | ||||
| 'person-vehicle-bike-detection-crossroad-1016', | ||||
| 'person-reidentification-retail-0277', | ||||
| 'human-pose-estimation-0001', | ||||
| 'age-gender-recognition-retail-0013', | ||||
| 'person-attributes-recognition-crossroad-0238', | ||||
| 'vehicle-attributes-recognition-barrier-0042', | ||||
| ] | ||||
|
|
||||
| _OCR_MODELS = [ | ||||
| 'horizontal-text-detection-0001', | ||||
| 'text-recognition-resnet-fc', | ||||
| 'text-recognition-0012' | ||||
| ] | ||||
| _OCR_MODELS = _DEFAULT_MODELS | ||||
|
||||
| _OCR_MODELS = _DEFAULT_MODELS |
Contributor
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.
This file needs to be cleaned up. Lot of unused variables.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.