How to use KappaNeuro/thomas-moran-style with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("KappaNeuro/thomas-moran-style") prompt = "Thomas Moran Style - In this utopian society, envision a stunning landscape painting by Thomas Moran. Majestic mountains rise in the distance, their peaks touched by a golden sunset. Verdant forests and cascading waterfalls create a sense of tranquility and serenity. The visual image captures the beauty of nature that serves as the foundation for this utopia, inspiring awe and reverence." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!