Skip to content

Commit 5f9e418

Browse files
authored
fix preview images (#2973)
1 parent c76e632 commit 5f9e418

File tree

7 files changed

+22
-8
lines changed

7 files changed

+22
-8
lines changed

notebooks/darkir-image-restoration/darkir-image-restoration.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@
11011101
"version": "3.10.12"
11021102
},
11031103
"openvino_notebooks": {
1104-
"imageUrl": "https://github.com/openvinotoolkit/openvino_notebooks/assets/29454499/6c13d438-8bdc-46d1-80e1-cbc4319012ee",
1104+
"imageUrl": "https://github.com/user-attachments/assets/ca3bd5f5-656a-45e5-86cb-0dd59e9f6938",
11051105
"tags": {
11061106
"categories": [
11071107
"Model Demos"

notebooks/intern-video2-classiciation/intern-video2-classification.ipynb

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,13 @@
4848
"metadata": {},
4949
"outputs": [],
5050
"source": [
51+
"import platform\n",
52+
"\n",
5153
"%pip install -q \"torch>=2.1\" \"torchvision\" \"opencv-python\" \"transformers>=4.45\" \"einops>=0.7.0\" \"timm>=0.5.4\" \"gradio>=4.19\" --extra-index-url https://download.pytorch.org/whl/cpu\n",
52-
"%pip install -q \"openvino>=2025.1.0\" \"nncf>=2.16.0\""
54+
"%pip install -q \"openvino>=2025.1.0\" \"nncf>=2.16.0\"\n",
55+
"\n",
56+
"if platform.system() == \"Darwin\":\n",
57+
" %pip install -q \"numpy<2.0\""
5358
]
5459
},
5560
{
@@ -164,7 +169,7 @@
164169
"\n",
165170
"model_format = widgets.Dropdown(\n",
166171
" options=[\"FP16\", \"INT8\", \"INT4\"],\n",
167-
" default=\"INT4\",\n",
172+
" value=\"INT4\",\n",
168173
" description=\"Model format:\",\n",
169174
")\n",
170175
"\n",

notebooks/ltx-video/ltx-video.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@
821821
"version": "3.11.4"
822822
},
823823
"openvino_notebooks": {
824-
"imageUrl": "https://media.githubusercontent.com/media/Lightricks/LTX-Video/refs/heads/main//docs/_static/ltx-video_example_00003.gif?raw=true",
824+
"imageUrl": "https://github.com/user-attachments/assets/71995dad-d290-4d3e-a53d-2f5ebe544b02",
825825
"tags": {
826826
"categories": [
827827
"Model Demos",

notebooks/smoldocling/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Document conversion with SmolDocling and OpenVINO
22

33
<div style="display: flex; align-items: center;">
4-
<img src="https://github.com/user-attachments/assets/f37728b0-f702-4b59-8bbf-9598063282f2" alt="SmolDocling" style="width: 200px; height: auto; margin-right: 20px;">
4+
<img src="https://github.com/user-attachments/assets/52a86ee7-065c-4ca5-b0b3-2458a79a6c9d" alt="SmolDocling" style="width: 200px; height: auto; margin-right: 20px;">
55
<div>
66
<p>SmolDocling is a multimodal Image-Text-to-Text model designed for efficient document conversion. It retains Docling's most popular features while ensuring full compatibility with <a href=https://github.com/docling-project/docling> Docling </a> through seamless support for <strong>DoclingDocuments</strong> (The JSON that can be exported using Docling follows this schema. The DoclingDocument type also models the metadata that may be attached to the converted document.)
77
</p>

notebooks/smoldocling/smoldocling.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"# Document conversion with SmolDocling and OpenVINO\n",
99
"\n",
1010
"<div style=\"display: flex; align-items: center;\">\n",
11-
"<img src=\"https://github.com/user-attachments/assets/f37728b0-f702-4b59-8bbf-9598063282f2\" alt=\"SmolDocling\" style=\"width: 200px; height: auto; margin-right: 20px;\">\n",
11+
"<img src=\"https://github.com/user-attachments/assets/52a86ee7-065c-4ca5-b0b3-2458a79a6c9d\" alt=\"SmolDocling\" style=\"width: 200px; height: auto; margin-right: 20px;\">\n",
1212
"<div>\n",
1313
" <p>SmolDocling is a multimodal Image-Text-to-Text model designed for efficient document conversion. It retains Docling's most popular features while ensuring full compatibility with <a href=https://github.com/docling-project/docling> Docling </a> through seamless support for <strong>DoclingDocuments</strong> (The JSON that can be exported using Docling follows this schema. The DoclingDocument type also models the metadata that may be attached to the converted document.)\n",
1414
" </p>\n",
@@ -558,7 +558,7 @@
558558
"version": "3.11.4"
559559
},
560560
"openvino_notebooks": {
561-
"imageUrl": "https://github.com/user-attachments/assets/f37728b0-f702-4b59-8bbf-9598063282f2",
561+
"imageUrl": "https://github.com/user-attachments/assets/52a86ee7-065c-4ca5-b0b3-2458a79a6c9d",
562562
"tags": {
563563
"categories": [
564564
"Model Demos",

notebooks/wan2.1-text-to-video/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ This tutorial consists of the following steps:
2727
- Run inference pipeline
2828
- Interactive inference
2929

30+
in this demonstration you will learn how to build text-to-video generation pipeline using Wan2.1 and OpenVINO.
31+
32+
Example of model input prompt and inference result are represented below:
33+
34+
| | |
35+
|-------|-------------------------------------|
36+
|prompt:| A cat walks on the grass, realistic |
37+
|generated: | ![](https://github.com/user-attachments/assets/3d1b587c-4799-442a-ac0a-2a5c9832d56e)|
38+
3039
## Installation instructions
3140
This is a self-contained example that relies solely on its own code.</br>
3241
We recommend running the notebook in a virtual environment. You only need a Jupyter server to start.

notebooks/wan2.1-text-to-video/wan2.1-text-to-video.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@
407407
"version": "3.11.4"
408408
},
409409
"openvino_notebooks": {
410-
"imageUrl": "https://media.githubusercontent.com/media/Lightricks/LTX-Video/refs/heads/main//docs/_static/ltx-video_example_00003.gif?raw=true",
410+
"imageUrl": "https://github.com/user-attachments/assets/3d1b587c-4799-442a-ac0a-2a5c9832d56e",
411411
"tags": {
412412
"categories": [
413413
"Model Demos",

0 commit comments

Comments
 (0)