Update app.py
Browse files
app.py
CHANGED
@@ -21,14 +21,6 @@ def generate_image(prompt, negative_prompt, num_inference_steps=30, guidance_sca
|
|
21 |
|
22 |
else:
|
23 |
model_id = "SG161222/Realistic_Vision_V6.0_B1_noVAE"
|
24 |
-
|
25 |
-
if "blowjob" in prompt.split():
|
26 |
-
prompt = prompt + "blowjob, hand on penis,naked male"
|
27 |
-
pipe.load_lora_weights(lora2)
|
28 |
-
|
29 |
-
if "caught" in prompt.split():
|
30 |
-
prompt = prompt + "busted, male pov, male masturbation, standing, hand on door, opening door"
|
31 |
-
pipe.load_lora_weights(lora3)
|
32 |
|
33 |
|
34 |
text_encoder = CLIPTextModel.from_pretrained(
|
@@ -47,6 +39,14 @@ def generate_image(prompt, negative_prompt, num_inference_steps=30, guidance_sca
|
|
47 |
tokenizer=tokenizer,
|
48 |
vae=vae
|
49 |
).to("cuda")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
if model == "Real6.0":
|
52 |
pipe.safety_checker = lambda images, **kwargs: (images, [False] * len(images))
|
|
|
21 |
|
22 |
else:
|
23 |
model_id = "SG161222/Realistic_Vision_V6.0_B1_noVAE"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
|
26 |
text_encoder = CLIPTextModel.from_pretrained(
|
|
|
39 |
tokenizer=tokenizer,
|
40 |
vae=vae
|
41 |
).to("cuda")
|
42 |
+
|
43 |
+
if "blowjob" in prompt.split():
|
44 |
+
prompt = prompt + "blowjob, hand on penis,naked male"
|
45 |
+
pipe.load_lora_weights(lora2)
|
46 |
+
|
47 |
+
if "caught" in prompt.split():
|
48 |
+
prompt = prompt + "busted, male pov, male masturbation, standing, hand on door, opening door"
|
49 |
+
pipe.load_lora_weights(lora3)
|
50 |
|
51 |
if model == "Real6.0":
|
52 |
pipe.safety_checker = lambda images, **kwargs: (images, [False] * len(images))
|