You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Review the [Architecture concept](docs/architecture.md) document for more detail
17
17
18
18
A few key features:
19
19
- Support for multiple frameworks. Serve models trained in popular formats such as Caffe*, TensorFlow*, MXNet* and ONNX*.
20
-
- Deploy new [model versions](https://github.com/IntelAI/OpenVINO-model-server/blob/master/docs/docker_container.md#model-version-policy) without changing client code.
20
+
- Deploy new [model versions](https://github.com/openvinotoolkit/model_server/blob/main/docs/docker_container.md#model-version-policy) without changing client code.
21
21
- Support for AI accelerators including [Intel Movidius Myriad VPUs](https://docs.openvinotoolkit.org/latest/openvino_docs_IE_DG_supported_plugins_VPU.html),
22
22
[GPU](https://docs.openvinotoolkit.org/latest/_docs_IE_DG_supported_plugins_CL_DNN.html) and [HDDL](https://docs.openvinotoolkit.org/latest/_docs_IE_DG_supported_plugins_HDDL.html).
23
23
- The server can be enabled both on [Bare Metal Hosts](docs/host.md) or in
@@ -26,14 +26,15 @@ A few key features:
26
26
-[Model reshaping](docs/docker_container.md#model-reshaping). The server supports reshaping models in runtime.
27
27
-[Model ensemble](docs/ensemble_scheduler.md) (preview). Connect multiple models to deploy complex processing solutions and reduce overhead of sending data back and forth.
28
28
29
-
**Note: OVMS has been tested on CentOS and publically released docker images are also based on CentOS.**
29
+
**Note: OVMS has been tested on CentOS* and Ubuntu*. Publically released docker images are based on CentOS.**
30
30
31
31
## Build OpenVINO Model Server
32
32
Build the docker image using command:
33
33
```bash
34
-
make docker_build
34
+
make docker_build DLDT_PACKAGE_URL=<URL>
35
35
```
36
36
called from the root directory of the repository.
37
+
Note: URL to OpenVINO Toolkit package can be received after registration on [OpenVINO™ Toolkit website](https://software.intel.com/en-us/openvino-toolkit/choose-download).
37
38
38
39
It will generate the images, tagged as:
39
40
*`openvino/model_server:latest` - with CPU, NCS and HDDL support
@@ -49,7 +50,7 @@ For debugging, an image with a suffix `-build` is also generated (i.e. `openvino
49
50
50
51
## Run OpenVINO Model Server
51
52
52
-
A detailed description of how to use OpenVINO Model Server can be found [here](docs/ovms_quickstart.md).
53
+
A demonstration how to use OpenVINO Model Server can be found in [a quick start guide](docs/ovms_quickstart.md).
53
54
54
55
More detailed guides to using Model Server in various scenarios can be found here:
or build the docker image openvino/model_server:latest with a command:
45
45
46
46
```bash
47
-
make docker_build
47
+
make docker_build DLDT_PACKAGE_URL=<URL>
48
48
```
49
+
Note: URL to OpenVINO Toolkit package can be received after registration on [OpenVINO™ Toolkit website](https://software.intel.com/en-us/openvino-toolkit/choose-download)
0 commit comments