joeysaada commited on
Commit
c43cbf8
·
verified ·
1 Parent(s): b6d91fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -4,3 +4,10 @@ import gradio as gr
4
 
5
  gr.load("models/strangerzonehf/cinematicShot-Pics-Flux").launch()
6
 
 
 
 
 
 
 
 
 
4
 
5
  gr.load("models/strangerzonehf/cinematicShot-Pics-Flux").launch()
6
 
7
+ from diffusers import DiffusionPipeline
8
+
9
+ pipe = DiffusionPipeline.from_pretrained("XLabs-AI/flux-RealismLora")
10
+ pipe.load_lora_weights("joeysaada/Jenniczech")
11
+
12
+ prompt = "This is a highly detailed, high-resolution photograph featuring a close-up view of a young woman's face framed by vibrant blue hydrangea flowers. The woman has a light to medium skin tone with a scattering of freckles across her cheeks and nose, and striking, piercing blue eyes that dominate the image. Her eyebrows are thick and dark, and her eyelashes are long and expressive."
13
+ image = pipe(prompt).images[0]