Views
No views yet
faltashana to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('OnomaAIResearch/Illustrious-xl-early-release-v0', torch_dtype=torch.float16).to('cuda')
5pipeline.load_lora_weights('hilop/faltashana_oct-lora', weight_name='faltashana_oct_000001750.safetensors')
6image = pipeline('faltashana').images[0]
7image.save("my_image.png")