Views
No views yet
1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('zenless-lab/sdxl-aam-xl-anime-mix', torch_dtype=torch.float16).to('cuda')
5pipeline.load_lora_weights('dada22231/7e7a3a8a-2069-42ff-a14f-abf1d4f91ab1', weight_name='god_e5b5cfde-f623-4136-9687-31839d12710c_sdxl_1h.safetensors')
6image = pipeline('None').images[0]
7image.save("my_image.png")