Remastered version of my LB model trained here locally. This model is designed and meant to create ghoulish scary creatures, the macabre, and the strange. not meant for gorgeous portraiture or landscapes
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
5pipeline.load_lora_weights('brushpenbob/creatureblend', weight_name='creatureblend.safetensors')
6image = pipeline('Your custom prompt').images[0]
For more details, including weighting, merging and fusing LoRAs, check the
documentation on loading LoRAs in diffusers