Skip to content

Commit 48a270c

Browse files
2025.2 links change (#3400)
* /main/->/releases/2025/2/ * /releases/2025/1/ -> /releases/2025/2/ * /nightly/->/2025/ * fixes --------- Co-authored-by: atobisze <[email protected]>
1 parent 211d338 commit 48a270c

File tree

72 files changed

+154
-154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+154
-154
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ A demonstration on how to use OpenVINO Model Server can be found in our [quick-s
5151

5252
Check also other instructions:
5353

54-
[Preparing model repository](https://docs.openvino.ai/nightly/model-server/ovms_docs_models_repository.html)
54+
[Preparing model repository](https://docs.openvino.ai/2025/model-server/ovms_docs_models_repository.html)
5555

56-
[Deployment](https://docs.openvino.ai/nightly/model-server/ovms_docs_deploying_server.html)
56+
[Deployment](https://docs.openvino.ai/2025/model-server/ovms_docs_deploying_server.html)
5757

58-
[Writing client code](https://docs.openvino.ai/nightly/model-server/ovms_docs_server_app.html)
58+
[Writing client code](https://docs.openvino.ai/2025/model-server/ovms_docs_server_app.html)
5959

60-
[Demos](https://docs.openvino.ai/nightly/model-server/ovms_docs_demos.html)
60+
[Demos](https://docs.openvino.ai/2025/model-server/ovms_docs_demos.html)
6161

6262

6363

@@ -73,7 +73,7 @@ Check also other instructions:
7373

7474
* [Inference Scaling with OpenVINO™ Model Server in Kubernetes and OpenShift Clusters](https://www.intel.com/content/www/us/en/developer/articles/technical/deploy-openvino-in-openshift-and-kubernetes.html)
7575

76-
* [Benchmarking results](https://docs.openvino.ai/nightly/about-openvino/performance-benchmarks.html)
76+
* [Benchmarking results](https://docs.openvino.ai/2025/about-openvino/performance-benchmarks.html)
7777

7878

7979
## Contact

client/go/kserve-api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN go install google.golang.org/protobuf/cmd/[email protected]
2626
RUN go install google.golang.org/grpc/cmd/[email protected]
2727

2828
# Compile API
29-
RUN wget https://raw.githubusercontent.com/openvinotoolkit/model_server/main/src/kfserving_api/grpc_predict_v2.proto
29+
RUN wget https://raw.githubusercontent.com/openvinotoolkit/model_server/releases/2025/2/src/kfserving_api/grpc_predict_v2.proto
3030
RUN echo 'option go_package = "./grpc-client";' >> grpc_predict_v2.proto
3131
RUN protoc --go_out="./" --go-grpc_out="./" ./grpc_predict_v2.proto
3232

client/java/kserve-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
</goals>
8585
<configuration>
8686
<url>
87-
https://raw.githubusercontent.com/openvinotoolkit/model_server/main/src/kfserving_api/grpc_predict_v2.proto</url>
87+
https://raw.githubusercontent.com/openvinotoolkit/model_server/releases/2025/2/src/kfserving_api/grpc_predict_v2.proto</url>
8888
<outputFileName>grpc_predict_v2.proto</outputFileName>
8989
<outputDirectory>src/main/proto</outputDirectory>
9090
</configuration>

client/python/ovmsclient/lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OVMS client library contains only the necessary dependencies, so the whole packa
66

77
As OpenVINO Model Server API is compatible with TensorFlow Serving, it's possible to use `ovmsclient` with TensorFlow Serving instances on: Predict, GetModelMetadata and GetModelStatus endpoints.
88

9-
See [API documentation](https://github.com/openvinotoolkit/model_server/blob/main/client/python/ovmsclient/lib/docs/README.md) for details on what the library provides.
9+
See [API documentation](https://github.com/openvinotoolkit/model_server/blob/releases/2025/2/client/python/ovmsclient/lib/docs/README.md) for details on what the library provides.
1010

1111
```bash
1212
git clone https://github.com/openvinotoolkit/model_server.git
@@ -136,4 +136,4 @@ results = client.predict(inputs=inputs, model_name="model")
136136
#
137137
```
138138

139-
For more details on `ovmsclient` see [API reference](https://github.com/openvinotoolkit/model_server/blob/main/client/python/ovmsclient/lib/docs/README.md)
139+
For more details on `ovmsclient` see [API reference](https://github.com/openvinotoolkit/model_server/blob/releases/2025/2/client/python/ovmsclient/lib/docs/README.md)

client/python/ovmsclient/lib/docs/pypi_overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `ovmsclient` package works both with OpenVINO&trade; Model Server and Tensor
99
The `ovmsclient` can replace `tensorflow-serving-api` package with reduced footprint and simplified interface.
1010

1111

12-
See [API reference](https://github.com/openvinotoolkit/model_server/blob/main/client/python/ovmsclient/lib/docs/README.md) for usage details.
12+
See [API reference](https://github.com/openvinotoolkit/model_server/blob/releases/2025/2/client/python/ovmsclient/lib/docs/README.md) for usage details.
1313

1414

1515
## Usage example
@@ -38,4 +38,4 @@ results = client.predict(inputs=inputs, model_name="model")
3838

3939
```
4040

41-
Learn more on `ovmsclient` [documentation site](https://github.com/openvinotoolkit/model_server/tree/main/client/python/ovmsclient/lib).
41+
Learn more on `ovmsclient` [documentation site](https://github.com/openvinotoolkit/model_server/tree/releases/2025/2/client/python/ovmsclient/lib).

demos/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ OpenVINO Model Server demos have been created to showcase the usage of the model
5353
|[VLM Text Generation with continuous batching](continuous_batching/vlm/README.md)|Generate text with VLM models and continuous batching pipeline|
5454
|[OpenAI API text embeddings ](embeddings/README.md)|Get text embeddings via endpoint compatible with OpenAI API|
5555
|[Reranking with Cohere API](rerank/README.md)| Rerank documents via endpoint compatible with Cohere|
56-
|[RAG with OpenAI API endpoint and langchain](https://github.com/openvinotoolkit/model_server/blob/main/demos/continuous_batching/rag/rag_demo.ipynb)| Example how to use RAG with model server endpoints|
56+
|[RAG with OpenAI API endpoint and langchain](https://github.com/openvinotoolkit/model_server/blob/releases/2025/2/demos/continuous_batching/rag/rag_demo.ipynb)| Example how to use RAG with model server endpoints|
5757
|[LLM on NPU](./llm_npu/README.md)| Generate text with LLM models and NPU acceleration|
5858
|[VLM on NPU](./vlm_npu/README.md)| Generate text with VLM models and NPU acceleration|
5959
|[Long context LLMs](./continuous_batching/long_context/README.md)| Recommendations for handling very long context in LLM models|
@@ -67,7 +67,7 @@ Check out the list below to see complete step-by-step examples of using OpenVINO
6767
| Demo | Description |
6868
|---|---|
6969
|[Image Classification](image_classification/python/README.md)|Run prediction on a JPEG image using image classification model via gRPC API.|
70-
|[Using ONNX Model](using_onnx_model/python/README.md)|Run prediction on a JPEG image using image classification ONNX model via gRPC API in two preprocessing variants. This demo uses [pipeline](../docs/dag_scheduler.md) with [image_transformation custom node](https://github.com/openvinotoolkit/model_server/tree/main/src/custom_nodes/image_transformation). |
70+
|[Using ONNX Model](using_onnx_model/python/README.md)|Run prediction on a JPEG image using image classification ONNX model via gRPC API in two preprocessing variants. This demo uses [pipeline](../docs/dag_scheduler.md) with [image_transformation custom node](https://github.com/openvinotoolkit/model_server/tree/releases/2025/2/src/custom_nodes/image_transformation). |
7171
|[Using TensorFlow Model](image_classification_using_tf_model/python/README.md)|Run image classification using directly imported TensorFlow model. |
7272
|[Age gender recognition](age_gender_recognition/python/README.md) | Run prediction on a JPEG image using age gender recognition model via gRPC API.|
7373
|[Face Detection](face_detection/python/README.md)|Run prediction on a JPEG image using face detection model via gRPC API.|
@@ -95,13 +95,13 @@ Check out the list below to see complete step-by-step examples of using OpenVINO
9595
## With DAG Pipelines
9696
| Demo | Description |
9797
|---|---|
98-
|[Horizontal Text Detection in Real-Time](horizontal_text_detection/python/README.md) | Run prediction on camera stream using a horizontal text detection model via gRPC API. This demo uses [pipeline](../docs/dag_scheduler.md) with [horizontal_ocr custom node](https://github.com/openvinotoolkit/model_server/tree/main/src/custom_nodes/horizontal_ocr) and [demultiplexer](../docs/demultiplexing.md). |
99-
|[Optical Character Recognition Pipeline](optical_character_recognition/python/README.md) | Run prediction on a JPEG image using a pipeline of text recognition and text detection models with a custom node for intermediate results processing via gRPC API. This demo uses [pipeline](../docs/dag_scheduler.md) with [east_ocr custom node](https://github.com/openvinotoolkit/model_server/tree/main/src/custom_nodes/east_ocr) and [demultiplexer](../docs/demultiplexing.md). |
98+
|[Horizontal Text Detection in Real-Time](horizontal_text_detection/python/README.md) | Run prediction on camera stream using a horizontal text detection model via gRPC API. This demo uses [pipeline](../docs/dag_scheduler.md) with [horizontal_ocr custom node](https://github.com/openvinotoolkit/model_server/tree/releases/2025/2/src/custom_nodes/horizontal_ocr) and [demultiplexer](../docs/demultiplexing.md). |
99+
|[Optical Character Recognition Pipeline](optical_character_recognition/python/README.md) | Run prediction on a JPEG image using a pipeline of text recognition and text detection models with a custom node for intermediate results processing via gRPC API. This demo uses [pipeline](../docs/dag_scheduler.md) with [east_ocr custom node](https://github.com/openvinotoolkit/model_server/tree/releases/2025/2/src/custom_nodes/east_ocr) and [demultiplexer](../docs/demultiplexing.md). |
100100
|[Single Face Analysis Pipeline](single_face_analysis_pipeline/python/README.md)|Run prediction on a JPEG image using a simple pipeline of age-gender recognition and emotion recognition models via gRPC API to analyze image with a single face. This demo uses [pipeline](../docs/dag_scheduler.md) |
101-
|[Multi Faces Analysis Pipeline](multi_faces_analysis_pipeline/python/README.md)|Run prediction on a JPEG image using a pipeline of age-gender recognition and emotion recognition models via gRPC API to extract multiple faces from the image and analyze all of them. This demo uses [pipeline](../docs/dag_scheduler.md) with [model_zoo_intel_object_detection custom node](https://github.com/openvinotoolkit/model_server/tree/main/src/custom_nodes/model_zoo_intel_object_detection) and [demultiplexer](../docs/demultiplexing.md) |
101+
|[Multi Faces Analysis Pipeline](multi_faces_analysis_pipeline/python/README.md)|Run prediction on a JPEG image using a pipeline of age-gender recognition and emotion recognition models via gRPC API to extract multiple faces from the image and analyze all of them. This demo uses [pipeline](../docs/dag_scheduler.md) with [model_zoo_intel_object_detection custom node](https://github.com/openvinotoolkit/model_server/tree/releases/2025/2/src/custom_nodes/model_zoo_intel_object_detection) and [demultiplexer](../docs/demultiplexing.md) |
102102
|[Model Ensemble Pipeline](model_ensemble/python/README.md)|Combine multiple image classification models into one [pipeline](../docs/dag_scheduler.md) and aggregate results to improve classification accuracy. |
103-
|[Face Blur Pipeline](face_blur/python/README.md)|Detect faces and blur image using a pipeline of object detection models with a custom node for intermediate results processing via gRPC API. This demo uses [pipeline](../docs/dag_scheduler.md) with [face_blur custom node](https://github.com/openvinotoolkit/model_server/tree/main/src/custom_nodes/face_blur). |
104-
|[Vehicle Analysis Pipeline](vehicle_analysis_pipeline/python/README.md)|Detect vehicles and recognize their attributes using a pipeline of vehicle detection and vehicle attributes recognition models with a custom node for intermediate results processing via gRPC API. This demo uses [pipeline](../docs/dag_scheduler.md) with [model_zoo_intel_object_detection custom node](https://github.com/openvinotoolkit/model_server/tree/main/src/custom_nodes/model_zoo_intel_object_detection). |
103+
|[Face Blur Pipeline](face_blur/python/README.md)|Detect faces and blur image using a pipeline of object detection models with a custom node for intermediate results processing via gRPC API. This demo uses [pipeline](../docs/dag_scheduler.md) with [face_blur custom node](https://github.com/openvinotoolkit/model_server/tree/releases/2025/2/src/custom_nodes/face_blur). |
104+
|[Vehicle Analysis Pipeline](vehicle_analysis_pipeline/python/README.md)|Detect vehicles and recognize their attributes using a pipeline of vehicle detection and vehicle attributes recognition models with a custom node for intermediate results processing via gRPC API. This demo uses [pipeline](../docs/dag_scheduler.md) with [model_zoo_intel_object_detection custom node](https://github.com/openvinotoolkit/model_server/tree/releases/2025/2/src/custom_nodes/model_zoo_intel_object_detection). |
105105

106106
## With C++ Client
107107
| Demo | Description |

demos/age_gender_recognition/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Install python dependencies:
5353
```console
5454
pip3 install -r requirements.txt
5555
```
56-
Run [age_gender_recognition.py](https://github.com/openvinotoolkit/model_server/blob/main/demos/age_gender_recognition/python/age_gender_recognition.py) script to make an inference:
56+
Run [age_gender_recognition.py](https://github.com/openvinotoolkit/model_server/blob/releases/2025/2/demos/age_gender_recognition/python/age_gender_recognition.py) script to make an inference:
5757
```console
5858
python age_gender_recognition.py --image_input_path age-gender-recognition-retail-0001.jpg --rest_port 8000
5959
```

demos/benchmark/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,4 +379,4 @@ docker run -v ${PWD}/workspace:/workspace --network host benchmark_client -a loc
379379
```
380380
381381
Many other client options together with benchmarking examples are presented in
382-
[an additional PDF document](https://github.com/openvinotoolkit/model_server/blob/main/docs/python-benchmarking-client-16feb.pdf).
382+
[an additional PDF document](https://github.com/openvinotoolkit/model_server/blob/releases/2025/2/docs/python-benchmarking-client-16feb.pdf).

demos/bert_question_answering/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This document demonstrates how to run inference requests for [BERT model](https://github.com/openvinotoolkit/open_model_zoo/tree/2022.1.0/models/intel/bert-small-uncased-whole-word-masking-squad-int8-0002) with OpenVINO Model Server. It provides questions answering functionality.
66

7-
In this example docker container with [bert-client image](https://github.com/openvinotoolkit/model_server/blob/main/demos/bert_question_answering/python/Dockerfile) runs the script [bert_question_answering.py](https://github.com/openvinotoolkit/model_server/blob/main/demos/bert_question_answering/python/bert_question_answering.py). It runs inference request for each paragraph on a given page in order to answer the provided question. Since each paragraph can have different size the functionality of dynamic shape is used.
7+
In this example docker container with [bert-client image](https://github.com/openvinotoolkit/model_server/blob/releases/2025/2/demos/bert_question_answering/python/Dockerfile) runs the script [bert_question_answering.py](https://github.com/openvinotoolkit/model_server/blob/releases/2025/2/demos/bert_question_answering/python/bert_question_answering.py). It runs inference request for each paragraph on a given page in order to answer the provided question. Since each paragraph can have different size the functionality of dynamic shape is used.
88

99
NOTE: With `min_request_token_num` parameter you can specify the minimum size of the request. If the paragraph has too short, it is concatenated with the next one until it has required length. When there is no paragraphs left to concatenate request is created with the remaining content.
1010

demos/code_local_assistant/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ This will work in streaming mode, meaning we will see the chat response/code dif
1414

1515
Download export script, install its dependencies and create directory for the models:
1616
```console
17-
curl https://raw.githubusercontent.com/openvinotoolkit/model_server/refs/heads/releases/2025/1/demos/common/export_models/export_model.py -o export_model.py
18-
pip3 install -r https://raw.githubusercontent.com/openvinotoolkit/model_server/refs/heads/releases/2025/1/demos/common/export_models/requirements.txt
17+
curl https://raw.githubusercontent.com/openvinotoolkit/model_server/refs/heads/releases/2025/2/demos/common/export_models/export_model.py -o export_model.py
18+
pip3 install -r https://raw.githubusercontent.com/openvinotoolkit/model_server/refs/heads/releases/2025/2/demos/common/export_models/requirements.txt
1919
mkdir models
2020
```
2121
> **Note:** The users in China need to set environment variable HF_ENDPOINT="https://hf-mirror.com" before running the export script to connect to the HF Hub.

0 commit comments

Comments
 (0)