From 26922751a5711de080370b3769f4841903d92e14 Mon Sep 17 00:00:00 2001 From: Alexey Smirnov Date: Fri, 30 Aug 2024 04:49:30 +0100 Subject: [PATCH] Fix missing model read in hello-npu (#2335) --- notebooks/hello-npu/hello-npu.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/notebooks/hello-npu/hello-npu.ipynb b/notebooks/hello-npu/hello-npu.ipynb index cc858687c89..db4640b7791 100644 --- a/notebooks/hello-npu/hello-npu.ipynb +++ b/notebooks/hello-npu/hello-npu.ipynb @@ -336,6 +336,7 @@ "if not model_path.exists():\n", " hf_hub.snapshot_download(\"katuni4ka/resnet50_fp16\", local_dir=model_path.parent)\n", " print(\"IR model saved to {}\".format(model_path))\n", + " model = core.read_model(model_path)\n", "else:\n", " print(\"Read IR model from {}\".format(model_path))\n", " model = core.read_model(model_path)"