How to use KappaNeuro/christopher-balaskas-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/christopher-balaskas-style") prompt = "Christopher Balaskas Style - (synthetism-inspired) In the caption of the post, the designer has included additional information about the album, such as the release date and a link to stream or purchase the music. The post also includes relevant hashtags to help increase discoverability and engagement." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!