-
Notifications
You must be signed in to change notification settings - Fork 31.3k
[Glm4.5V] fix vLLM support #40696
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
Merged
[Glm4.5V] fix vLLM support #40696
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,9 +15,9 @@ | |
|
|
||
| import os | ||
| import warnings | ||
| from collections.abc import Iterable | ||
| from collections.abc import Iterable, Mapping | ||
| from contextlib import redirect_stdout | ||
| from dataclasses import dataclass | ||
| from dataclasses import dataclass, fields | ||
| from io import BytesIO | ||
| from typing import Callable, NewType, Optional, Union | ||
| from urllib.parse import urlparse | ||
|
|
@@ -78,7 +78,7 @@ | |
|
|
||
|
|
||
| @dataclass | ||
| class VideoMetadata: | ||
| class VideoMetadata(Mapping): | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the motivation for making it iterable?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so that we can use |
||
| total_num_frames: int | ||
| fps: float = None | ||
| width: int = None | ||
|
|
@@ -87,6 +87,12 @@ class VideoMetadata: | |
| video_backend: str = None | ||
| frames_indices: list[int] = None | ||
|
|
||
| def __iter__(self): | ||
| return (f.name for f in fields(self)) | ||
|
|
||
| def __len__(self): | ||
| return len(fields(self)) | ||
|
|
||
| def __getitem__(self, item): | ||
| return getattr(self, item) | ||
|
|
||
|
|
@@ -96,8 +102,8 @@ def __setitem__(self, key, value): | |
| @property | ||
| def timestamps(self) -> float: | ||
| "Timestamps of the sampled frames in seconds." | ||
| if self.fps is None: | ||
| raise ValueError("Cannot infer video `timestamps` when `fps` is None.") | ||
| if self.fps is None or self.frames_indices is None: | ||
| raise ValueError("Cannot infer video `timestamps` when `fps` or `frames_indices` is None.") | ||
| return [frame_idx / self.fps for frame_idx in self.frames_indices] | ||
|
|
||
| def update(self, dictionary): | ||
|
|
||
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
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.
should we align
self.sizeinstead?Uh oh!
There was an error while loading. Please reload this page.
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 defaults are already using these values. It is the model checkpoint that has another set of values saved, and for some reason we never use it. Didn't want to break BC but using config values is actually correct
Uh oh!
There was an error while loading. Please reload this page.
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.
hmmm, can we update config values instead? or Hub's PR will not be merged?
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 can try, lemme ask one of the authors who is on slack
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.
asked the authors and the config values are the correct ones. So will update processor in the next PR to use config defaults and mark it as slightly breaking