Views
No views yet
1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('ai-toolkit/Wan2.2-T2V-A14B-Diffusers-bf16', torch_dtype=torch.bfloat16).to('cuda')
5pipeline.load_lora_weights('synap5e/arcan3_251003_wan22-t2v_v12-rank32-lora', weight_name='arcan3_251003_wan22-t2v_v12-rank32_low_noise.safetensors')
6image = pipeline('a beautiful landscape').images[0]
7image.save("my_image.png")