Views
No views yet
Vect0r style 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('Ashmotv/vect0r_style_wan_v2-lora', weight_name='vect0r_style_wan_v2_low_noise.safetensors')
6image = pipeline('Vect0r style').images[0]
7image.save("my_image.png")