Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from diffusers import DiffusionPipeline
|
2 |
+
|
3 |
+
pipe = DiffusionPipeline.from_pretrained("KappaNeuro/jules-bastien-lepage-style")
|
4 |
+
pipe.load_lora_weights("DigiP-AI/LoRAtest")
|
5 |
+
|
6 |
+
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."
|
7 |
+
image = pipe(prompt).images[0]
|