Skip to content

Commit

Permalink
fix fstring in 301 (#1792)
Browse files Browse the repository at this point in the history
  • Loading branch information
eaidova authored Mar 6, 2024
1 parent 3708612 commit 66e4101
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"- Run OpenVINO model\n",
"\n",
"\n",
"#### Table of contents:\n\n",
"#### Table of contents:\n",
"\n",
"- [About model](#About-model)\n",
"- [Prerequisites](#Prerequisites)\n",
"- [Build model and convert it to OpenVINO IR format](#Build-model-and-convert-it-to-OpenVINO-IR-format)\n",
Expand Down Expand Up @@ -81,8 +82,8 @@
},
"outputs": [],
"source": [
"%pip install -q torch \"torchvision<0.17.0\" --extra-index-url https://download.pytorch.org/whl/cpu\n",
"%pip install -q \"transformers>=4.31.0,<4.35.0\" einops peft opencv_python decord pytorchvideo sentencepiece protobuf \"openvino>=2023.2.0\" \"nncf>=2.7.0\" gradio"
"%pip install -q torch \"torchvision<0.17.0\" \"transformers>=4.31.0,<4.35.0\" \"pytorchvideo\" \"einops\" \"peft==0.6.2\" --extra-index-url https://download.pytorch.org/whl/cpu\n",
"%pip install -q opencv_python decord sentencepiece protobuf \"openvino>=2023.2.0\" \"nncf>=2.7.0\" gradio"
]
},
{
Expand Down Expand Up @@ -1300,7 +1301,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.12"
"version": "3.8.10"
},
"openvino_notebooks": {
"imageUrl": "https://camo.githubusercontent.com/ef232f43135222dc7cfc6e27ae26ac64edf6918512a8a4f78077e4f86c27883c/68747470733a2f2f7a312e617831782e636f6d2f323032332f31312f30372f70696c347371482e706e67",
Expand Down Expand Up @@ -1328,4 +1329,4 @@
},
"nbformat": 4,
"nbformat_minor": 5
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@
"print(\"Device information:\")\n",
"\n",
"for ov_device in core.available_devices:\n",
" print(f\"{ov_device} - {core.get_property(ov_device, \"FULL_DEVICE_NAME\")})"
" print(f'{ov_device} - {core.get_property(ov_device, \"FULL_DEVICE_NAME\")}')"
]
},
{
Expand Down

0 comments on commit 66e4101

Please sign in to comment.