[CI] set max transformers version for skywork model (#42104)

Signed-off-by: Divakar Verma <divakar.verma@amd.com>
This commit is contained in:
Divakar Verma
2026-05-13 16:53:49 -07:00
committed by GitHub
parent b2198670b1
commit ca7e4546da
+10 -1
View File
@@ -1334,7 +1334,16 @@ _MULTIMODAL_EXAMPLE_MODELS = {
),
"RForConditionalGeneration": _HfExamplesInfo("YannQi/R-4B", trust_remote_code=True),
"SkyworkR1VChatModel": _HfExamplesInfo(
"Skywork/Skywork-R1V-38B", trust_remote_code=True
"Skywork/Skywork-R1V-38B",
trust_remote_code=True,
max_transformers_version="4.57",
transformers_version_reason={
"hf": (
"SkyworkChatModel.__init__ does not call self.post_init(), so "
"`all_tied_weights_keys` is never set; Transformers v5 requires "
"this attribute in _move_missing_keys_from_meta_to_device."
)
},
),
"SmolVLMForConditionalGeneration": _HfExamplesInfo(
"HuggingFaceTB/SmolVLM2-2.2B-Instruct"