Update app.py
Browse files
app.py
CHANGED
|
@@ -48,6 +48,10 @@ def infer(prompt, seed=42, randomize_seed=False, width=1024, height=1024, num_in
|
|
| 48 |
adapter_name=["feifei"],
|
| 49 |
lora_scale=1.0,
|
| 50 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
image = pipe(
|
| 52 |
prompt = "flux, 8k, ",
|
| 53 |
prompt_2 = prompt,
|
|
@@ -60,7 +64,16 @@ def infer(prompt, seed=42, randomize_seed=False, width=1024, height=1024, num_in
|
|
| 60 |
return image, seed
|
| 61 |
|
| 62 |
examples = [
|
| 63 |
-
"this photo is a
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
]
|
| 65 |
|
| 66 |
css="""
|
|
|
|
| 48 |
adapter_name=["feifei"],
|
| 49 |
lora_scale=1.0,
|
| 50 |
)
|
| 51 |
+
prompt = re.sub("girl", " feifei, A beautiful, 18 yo kpop idol, large-busted Japanese girl, with light makeup, gazing deeply into the camera, " ,prompt)
|
| 52 |
+
prompt = re.sub("young woman", " feifei, A beautiful, 18 yo kpop idol, large-busted Japanese girl, with light makeup, gazing deeply into the camera, " ,prompt)
|
| 53 |
+
prompt = re.sub("woman", " feifei, A beautiful, 18 yo kpop idol, large-busted Japanese girl, with light makeup, gazing deeply into the camera, " ,prompt)
|
| 54 |
+
prompt = re.sub("model", " feifei, A beautiful, 18 yo kpop idol, large-busted Japanese girl, with light makeup, gazing deeply into the camera, " ,prompt)
|
| 55 |
image = pipe(
|
| 56 |
prompt = "flux, 8k, ",
|
| 57 |
prompt_2 = prompt,
|
|
|
|
| 64 |
return image, seed
|
| 65 |
|
| 66 |
examples = [
|
| 67 |
+
"this photo is a girl",
|
| 68 |
+
"this photo is a girl in bikini",
|
| 69 |
+
"this photo is a cute girl in cute bikini",
|
| 70 |
+
"girl, sunrise",
|
| 71 |
+
"DarkIdol flux girl",
|
| 72 |
+
"a sexy girl,poses,look at camera,Slim figure, gigantic breasts,poses,natural,High-quality photography, creative composition, fashion foresight, a strong visual style, and an aura of luxury and sophistication collectively define the distinctive aesthetic of Vogue magazine.",
|
| 73 |
+
"real model slight smile girl in real life",
|
| 74 |
+
"real model smile girl in real life",
|
| 75 |
+
"real model girl in real life",
|
| 76 |
+
"A high-resolution photograph of girl in a serene, natural setting, with soft, warm lighting, and a minimalist aesthetic, showcasing a elegant fragrance bottle and the model's effortless, emotive expression, with impeccable styling, and a muted color palette, evoking a sense of understated luxury and refinement."
|
| 77 |
]
|
| 78 |
|
| 79 |
css="""
|