Commit
·
e48c96d
1
Parent(s):
4724ce5
Updated default values
Browse files
app.py
CHANGED
@@ -277,9 +277,9 @@ def inference(text, style, inference_step, guidance_scale, seed, guidance_method
|
|
277 |
|
278 |
title = "Stable Diffusion with Textual Inversion"
|
279 |
description = "A simple Gradio interface to infer Stable Diffusion and generate images with different art style"
|
280 |
-
examples = [["A sweet potato farm", 'Concept', 10,
|
281 |
-
["Sky full of cotton candy", 'Realistic', 10,
|
282 |
-
["Kittens in the bathtub", 'Line', 10,
|
283 |
|
284 |
demo = gr.Interface(inference,
|
285 |
inputs = [gr.Textbox(label="Prompt", type="text"),
|
|
|
277 |
|
278 |
title = "Stable Diffusion with Textual Inversion"
|
279 |
description = "A simple Gradio interface to infer Stable Diffusion and generate images with different art style"
|
280 |
+
examples = [["A sweet potato farm", 'Concept', 10, 3.5, 1, 'Grayscale', 100],
|
281 |
+
["Sky full of cotton candy", 'Realistic', 10, 6.5, 2, 'Bright', 200],
|
282 |
+
["Kittens in the bathtub", 'Line', 10, 9.5, 3, 'Contrast', 300]]
|
283 |
|
284 |
demo = gr.Interface(inference,
|
285 |
inputs = [gr.Textbox(label="Prompt", type="text"),
|