-
Notifications
You must be signed in to change notification settings - Fork 945
Add Wan2.2 TI2V notebook #3209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: latest
Are you sure you want to change the base?
Add Wan2.2 TI2V notebook #3209
Conversation
openvino-dev-samples
commented
Dec 11, 2025
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds a new notebook demonstrating text-image to video generation using the Wan2.2 model with OpenVINO optimization. The implementation includes model conversion, weight compression, and an interactive demo interface.
Key changes:
- Wan2.2 model integration with support for INT4/INT8/FP16 precision
- OpenVINO pipeline implementation for image-to-video generation
- Gradio-based interactive demo interface
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| notebooks/wan2.2-text-image-to-video/wan2.2-text-image-to-video.ipynb | Main notebook implementing Wan2.2 text-image to video generation with model conversion and inference |
| notebooks/wan2.2-text-image-to-video/ov_wan_i2v_helper.py | Helper module containing model conversion and OpenVINO pipeline implementation |
| notebooks/wan2.2-text-image-to-video/gradio_helper.py | Gradio interface helper for interactive video generation demo |
| notebooks/wan2.2-text-image-to-video/README.md | Documentation describing the notebook's purpose and installation instructions |
| .ci/spellcheck/.pyspelling.wordlist.txt | Added "customizable" to spellcheck whitelist |
| .ci/skipped_notebooks.yml | Added notebook to CI skip list for all platforms |
| .ci/ignore_treon_docker.txt | Added notebook to Docker treon ignore list |
Comments suppressed due to low confidence (1)
notebooks/wan2.2-text-image-to-video/ov_wan_i2v_helper.py:1
- The comment on line 115 references 'ov_wan_helper.py' but the actual file is named 'ov_wan_i2v_helper.py'. This inconsistency could cause confusion when looking for the referenced file.
from pathlib import Path
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "from ov_wan_i2v_helper import OVWanImageToVideoPipeline\n", | ||
| "\n", | ||
| "# Uncomment the line to see model inference code\n", | ||
| "# ??OVWanPipeline" |
Copilot
AI
Dec 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The commented reference mentions 'OVWanPipeline' but the actual class is 'OVWanImageToVideoPipeline', causing a mismatch that could confuse users.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot open a new pull request to apply changes based on this feedback
notebooks/wan2.2-text-image-to-video/wan2.2-text-image-to-video.ipynb
Outdated
Show resolved
Hide resolved
…o.ipynb Co-authored-by: Copilot <[email protected]>