We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf61b0a commit dbfbb59Copy full SHA for dbfbb59
1 file changed
tests/pipelines/joyimage/test_joyimage_edit.py
@@ -92,11 +92,13 @@ def get_dummy_components(self):
92
93
scheduler = FlowMatchEulerDiscreteScheduler()
94
95
- text_encoder = Qwen3VLForConditionalGeneration.from_pretrained(tiny_ckpt_id)
96
processor = Qwen3VLProcessor.from_pretrained(tiny_ckpt_id)
97
processor.image_processor.min_pixels = 4 * 28 * 28
98
processor.image_processor.max_pixels = 4 * 28 * 28
99
+ text_encoder = Qwen3VLForConditionalGeneration.from_pretrained(tiny_ckpt_id)
100
+ text_encoder.resize_token_embeddings(len(processor.tokenizer))
101
+
102
components = {
103
"transformer": transformer,
104
"vae": vae,
0 commit comments