Image_Studio / app.py
DigiP-AI's picture
Create app.py
861d39e verified
raw
history blame
729 Bytes
from diffusers import DiffusionPipeline
pipe = DiffusionPipeline.from_pretrained("KappaNeuro/jules-bastien-lepage-style")
pipe.load_lora_weights("DigiP-AI/LoRAtest")
prompt = "Jules Bastien-Lepage Style - Evoke a sense of nostalgia with a weathered 15th century painting of a french woman, bathed in pale earthy color palette and worn beige. Embrace a romantic style, employing techniques such as scumbling and sfumato to create soft transitions and atmospheric effects. Paint on a linen canvas with a visible weave, adding a tactile element to the artwork. Seek inspiration from the works of J.M.W. Turner and Caspar David Friedrich, incorporating their mastery of light, mood, and the sublime."
image = pipe(prompt).images[0]