diff --git a/README.md b/README.md index bbaee04c6..aa81f5e66 100644 --- a/README.md +++ b/README.md @@ -267,20 +267,20 @@ This can result in significant speedup in encoder performance. Here are the inst - Build `whisper.cpp` with OpenVINO support: - Download OpenVINO package from [release page](https://github.com/openvinotoolkit/openvino/releases). The recommended version to use is [2024.6.0](https://github.com/openvinotoolkit/openvino/releases/tag/2024.6.0). Ready to use Binaries of the required libraries can be found in the [OpenVino Archives](https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.6/) + Download OpenVINO package from [release page](https://github.com/openvinotoolkit/openvino/releases). The recommended version to use is [2026.3.0](https://github.com/openvinotoolkit/openvino/releases/tag/2026.3.0). Ready to use Binaries of the required libraries can be found in the [OpenVino Archives](https://storage.openvinotoolkit.org/repositories/openvino/packages/2026.3/) After downloading & extracting package onto your development system, set up required environment by sourcing setupvars script. For example: Linux: ```bash - source /path/to/l_openvino_toolkit_ubuntu22_2023.0.0.10926.b4452d56304_x86_64/setupvars.sh + source /path/to/openvino_toolkit_ubuntu/setupvars.sh ``` Windows (cmd): ```powershell - C:\Path\To\w_openvino_toolkit_windows_2023.0.0.10926.b4452d56304_x86_64\setupvars.bat + C:\Path\To\openvino_toolkit_windows\setupvars.bat ``` And then build the project using cmake: diff --git a/models/convert-whisper-to-openvino.py b/models/convert-whisper-to-openvino.py index a17e53555..6cf99404e 100644 --- a/models/convert-whisper-to-openvino.py +++ b/models/convert-whisper-to-openvino.py @@ -3,7 +3,7 @@ import torch from whisper import load_model import os from openvino.frontend import FrontEndManager -from openvino.runtime import serialize +from openvino import serialize import shutil def convert_encoder(hparams, encoder, mname): diff --git a/models/requirements-openvino.txt b/models/requirements-openvino.txt index 707fa58ab..0d5abaeb7 100644 --- a/models/requirements-openvino.txt +++ b/models/requirements-openvino.txt @@ -1,2 +1,3 @@ openvino>=2023.3.0 openai-whisper +onnxscript