Skip to content
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

CVS-162115 - Deprecate OVMS #557

Merged
merged 3 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions geti_sdk/deployment/deployed_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,10 @@ def load_inference_model(
f"requests: {optimal_requests}"
)
else:
logging.warning(
"Model inference through OpenVINO model server is DEPRECATED and will be removed in the future. "
"Please use local inference instead for more stable results."
)
# Connect to an OpenVINO model server instance
model_name = generate_ovms_model_name(project=project, model=self)
model_address = generate_ovms_model_address(
Expand Down
3 changes: 1 addition & 2 deletions geti_sdk/deployment/resources/OVMS_README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Deploying Geti models with OpenVINO Model Server (OVMS)
> NOTE: Be advised that is an experimental feature which may be subject to change in
> the future
> Note: This feature is deprecated and is not recommended for use.

This README describes how to set up an OpenVINO Model Server for any Intel® Geti™
project. Please note that it is meant as an example only, and the configuration used
Expand Down
Loading
Loading