Spaces:
Running
Running
Jumper775
commited on
models : fix openvino setup info (#1874)
Browse files
README.md
CHANGED
|
@@ -339,7 +339,7 @@ This can result in significant speedup in encoder performance. Here are the inst
|
|
| 339 |
python -m venv openvino_conv_env
|
| 340 |
openvino_conv_env\Scripts\activate
|
| 341 |
python -m pip install --upgrade pip
|
| 342 |
-
pip install -r openvino
|
| 343 |
```
|
| 344 |
|
| 345 |
Linux and macOS:
|
|
@@ -349,7 +349,7 @@ This can result in significant speedup in encoder performance. Here are the inst
|
|
| 349 |
python3 -m venv openvino_conv_env
|
| 350 |
source openvino_conv_env/bin/activate
|
| 351 |
python -m pip install --upgrade pip
|
| 352 |
-
pip install -r openvino
|
| 353 |
```
|
| 354 |
|
| 355 |
- Generate an OpenVINO encoder model. For example, to generate a `base.en` model, use:
|
|
|
|
| 339 |
python -m venv openvino_conv_env
|
| 340 |
openvino_conv_env\Scripts\activate
|
| 341 |
python -m pip install --upgrade pip
|
| 342 |
+
pip install -r requirements-openvino.txt
|
| 343 |
```
|
| 344 |
|
| 345 |
Linux and macOS:
|
|
|
|
| 349 |
python3 -m venv openvino_conv_env
|
| 350 |
source openvino_conv_env/bin/activate
|
| 351 |
python -m pip install --upgrade pip
|
| 352 |
+
pip install -r requirements-openvino.txt
|
| 353 |
```
|
| 354 |
|
| 355 |
- Generate an OpenVINO encoder model. For example, to generate a `base.en` model, use:
|