Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
9f7b4ba8
Unverified
Commit
9f7b4ba8
authored
Oct 24, 2024
by
Kevin H. Luu
Committed by
GitHub
Oct 24, 2024
Browse files
[ci/Build] Skip Chameleon for transformers 4.46.0 on broadcast test #9675 (#9676)
parent
c91ed47c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
tests/models/decoder_only/vision_language/test_broadcast.py
tests/models/decoder_only/vision_language/test_broadcast.py
+4
-0
No files found.
tests/models/decoder_only/vision_language/test_broadcast.py
View file @
9f7b4ba8
import
pytest
import
transformers
from
....utils
import
multi_gpu_test
...
...
@@ -23,6 +24,9 @@ def test_models(hf_runner, vllm_runner, image_assets,
elif
model
.
startswith
(
"llava-hf/llava-v1.6"
):
from
.test_llava_next
import
models
,
run_test
# type: ignore[no-redef]
elif
model
.
startswith
(
"facebook/chameleon"
):
if
transformers
.
__version__
.
startswith
(
"4.46.0"
):
pytest
.
skip
(
"Model broken in HF, "
"see huggingface/transformers#34379"
)
from
.test_chameleon
import
models
,
run_test
# type: ignore[no-redef]
else
:
raise
NotImplementedError
(
f
"Unsupported model:
{
model
}
"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment