SeemG commited on
Commit
dbeeaf0
·
verified ·
1 Parent(s): 6c1de43

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -49,7 +49,7 @@ def output(text, style, use_loss=False):
49
 
50
 
51
  title = "Stable Diffusion with different styles"
52
- description = "Explore the versatility of artistic styles by transforming your prompts. This demo takes the word 'cat' in your input and applies a unique style of your choice, giving you a fresh visual interpretation."
53
  examples = [["A majestic lion with the playful expression of a puppy", "depthmap", True],
54
  ["A futuristic robot designed in space suit", "midjourney", True],
55
  ["A serene forest scene, with animals that resemble puppies", "cosmicgalaxy", False],
@@ -58,7 +58,7 @@ examples = [["A majestic lion with the playful expression of a puppy", "depthmap
58
  demo = gr.Interface(
59
  output,
60
  inputs=[
61
- gr.Textbox(placeholder="Explore the versatility of artistic styles by transforming your prompts. This demo takes the word 'cat' in your input and applies a unique style of your choice, giving you a fresh visual interpretation.", container=False, scale=7),
62
  gr.Radio(styles, label="Select a Style"),
63
  gr.Checkbox(label="Use custom loss")
64
  ],
 
49
 
50
 
51
  title = "Stable Diffusion with different styles"
52
+ description = "Explore the versatility of artistic styles by transforming your prompts. This demo takes the promt and applies a unique style of your choice, giving you a fresh visual interpretation."
53
  examples = [["A majestic lion with the playful expression of a puppy", "depthmap", True],
54
  ["A futuristic robot designed in space suit", "midjourney", True],
55
  ["A serene forest scene, with animals that resemble puppies", "cosmicgalaxy", False],
 
58
  demo = gr.Interface(
59
  output,
60
  inputs=[
61
+ gr.Textbox(placeholder="Prompt", container=False, scale=7),
62
  gr.Radio(styles, label="Select a Style"),
63
  gr.Checkbox(label="Use custom loss")
64
  ],