Views
No views yet
diaz_jaquet_person to trigger the image generation.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('zebby09/diaz_jaquet_wan_22-lora', weight_name='diaz_jaquet_wan_22_low_noise.safetensors')
6image = pipeline('diaz_jaquet_person').images[0]
7image.save("my_image.png")