Views
No views yet
SC64ROAD 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.float16).to('cuda')
5pipeline.load_lora_weights('Crowbar-Dub/MB_FORESTROAD_WAN-2-2-lora', weight_name='MB_FORESTROAD_WAN-2-2_000002250_high_noise.safetensors')
6image = pipeline('SC64ROAD').images[0]
7image.save("my_image.png")