-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
[Model] New model support for Phi-4-multimodal-instruct #14119
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
Merged
vllm-bot
merged 28 commits into
vllm-project:main
from
congcongchen123:congcongchen/phi-4-multimodal-instruct
Mar 5, 2025
+7,159
−3
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
1da44c5
Add support for Phi-4-multimodal-instruct
congcongchen123 d0fa70f
Fix error related to interface changes from latest main
congcongchen123 85ef077
rename and clean up code
congcongchen123 d8f40d8
Minor clean-up
jrplatin a569e4e
Do not support Tensor Parallel and Pipeline Parallel
congcongchen123 f7b8579
clean up code
congcongchen123 375e246
code cleaning / renaming for the vision part
ChenRocks f8a3373
rename phi4o with phi4mm
congcongchen123 7b73371
refactor change phi4o to phi4mm
congcongchen123 30a70d5
refactor change phi4o to phi4mm continued
congcongchen123 99a636d
final update to change phio to phi4mm
congcongchen123 5dcf783
Fix errors after rebasing to the top of the main
congcongchen123 707dfe1
Refactor phimm_utils
vmazalov 40011bb
remove flash_attn from requirements-common.txt
congcongchen123 1200132
Add more max LoRA rank support
congcongchen123 4b11f10
format code
congcongchen123 86295b3
restore requirements-test.txt
congcongchen123 bbdcfb7
remove hard dependency on flash-attn
congcongchen123 28de545
Register test and add model info to supported_model.md
congcongchen123 5327e89
restore requirements-test.txt
congcongchen123 454d4a7
restore requirements-test.txt
congcongchen123 1bb5750
Add text-only version of Phi-4-mini to the supported_models page per…
congcongchen123 a2cc774
Minor update to supported_models.md
congcongchen123 0460912
Update supported_models.md
congcongchen123 08c845a
delete the testing script
congcongchen123 1f468f4
Merge branch 'main' into congcongchen/phi-4-multimodal-instruct
congcongchen123 72ddbb4
Print errors instead of throwing the RuntimeError since CI environmen…
congcongchen123 77f4edc
update attn_backend detection
ywang96 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
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.
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.
We should try to remove the scipy dep if possible. It is okay if we do it in a follow up PR. Seems like it is only being used for a single function
scipy.signal.resample_poly
inphi4mm.py
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.
Sure, will do that in the following up PR.