Spaces:
Runtime error
Runtime error
Params
Browse files
app.py
CHANGED
@@ -10,11 +10,11 @@ device = "cuda" if torch.cuda.is_available() else "cpu"
|
|
10 |
pipe = DiffusionPipeline.from_pretrained("krnl/venereital-IA-23", safety_checker=None)
|
11 |
pipe = pipe.to(device)
|
12 |
|
13 |
-
def genie (prompt, negative_prompt
|
14 |
generator = torch.Generator(device=device).manual_seed(-1)
|
15 |
prompt = "photo of sks person, " + prompt
|
16 |
negative_prompt = "nude, naked, tits, nsfw, " + negative_prompt
|
17 |
-
images = pipe(prompt, negative_prompt=negative_prompt, width=512, height=512, num_inference_steps=
|
18 |
return images
|
19 |
|
20 |
gr.Interface(fn=genie, inputs=[gr.Textbox(label='Descrivi la tua venere ideale',default="capelli rossi, con occhiali da sole"), gr.Textbox(label='Descrivi cosa non vorresti vedere',default="faccia triste")], outputs='image', title="Generatore di Venere", description="Genera la tua Venere! Scatena la tua fantsIA!").launch(debug=True, max_threads=True)
|
|
|
10 |
pipe = DiffusionPipeline.from_pretrained("krnl/venereital-IA-23", safety_checker=None)
|
11 |
pipe = pipe.to(device)
|
12 |
|
13 |
+
def genie (prompt, negative_prompt):
|
14 |
generator = torch.Generator(device=device).manual_seed(-1)
|
15 |
prompt = "photo of sks person, " + prompt
|
16 |
negative_prompt = "nude, naked, tits, nsfw, " + negative_prompt
|
17 |
+
images = pipe(prompt, negative_prompt=negative_prompt, width=512, height=512, num_inference_steps=25, guidance_scale=7, num_images_per_prompt=1, generator=generator).images[0]
|
18 |
return images
|
19 |
|
20 |
gr.Interface(fn=genie, inputs=[gr.Textbox(label='Descrivi la tua venere ideale',default="capelli rossi, con occhiali da sole"), gr.Textbox(label='Descrivi cosa non vorresti vedere',default="faccia triste")], outputs='image', title="Generatore di Venere", description="Genera la tua Venere! Scatena la tua fantsIA!").launch(debug=True, max_threads=True)
|