Add Ministral 3 instruct support#3415
Open
dhandhalyabhavik wants to merge 2 commits intoopenvinotoolkit:latestfrom
Open
Add Ministral 3 instruct support#3415dhandhalyabhavik wants to merge 2 commits intoopenvinotoolkit:latestfrom
dhandhalyabhavik wants to merge 2 commits intoopenvinotoolkit:latestfrom
Conversation
- Add ministral-3.ipynb notebook for Ministral-3-3B-Instruct-2512 VLM - Uses OVModelForVisualCausalLM from optimum-intel PR openvinotoolkit#1659 - INT4 weight compression by default - Includes gradio_helper.py for interactive chatbot demo - Exports from mistralai/Ministral-3-3B-Instruct-2512-BF16 model
…demo image - Add model dropdown for 3B and 8B variants (Ministral-3-3B/8B-Instruct-2512-BF16) - Remove broken device=GPU cell that crashed the kernel - Replace ipywidgets device_widget with plain Python device selection - Use qwen3-vl demo image (beach scene) for image inference - Tested INT4 on both CPU and GPU for both model sizes
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds a notebook for running Ministral-3 (Mistral AI's multimodal model) with OpenVINO, supporting both 3B and 8B model variants.
What's included
Tested configurations
Tested and verified Ministral-3-3B-Instruct-2512-BF16 and Ministral-3-8B-Instruct-2512-BF16 both models,
Verified its working for CPU, dGPU, iGPU.
Note
openvino_genai.VLMPipeline does not support mistral3 model type yet, so this notebook uses the optimum-intel OVModelForVisualCausalLM pipeline for inference.