Views
No views yet
Qwen3VLForConditionalGeneration / Qwen3VLProcessor. Due to upstream changes in transformers >= 5.0, you must pin:pip install "transformers==4.57.3" transformers >= 5.0 will produce visible block-pattern artifacts in the generated image.1import torch
2from diffusers import DreamLitePipeline
3
4pipe = DreamLitePipeline.from_pretrained(
5 "carlofkl/DreamLite-base", torch_dtype=torch.bfloat16
6).to("cuda")
7image = pipe("a corgi astronaut", num_inference_steps=28).images[0]