nielsgl commited on
Commit
2d788bc
·
1 Parent(s): 4f3830d

update app

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -41,9 +41,9 @@ output = gr.Gallery(label="Outputs").style(grid=(1,2))
41
  title = "KerasCV Stable Diffusion Demo on images of Bored Apes."
42
  description = "This is a dreambooth model fine-tuned on images the NFT collection of the Bored Ape Yacht Club. To try it, input the concept with `drawbayc ape`."
43
  examples=[
44
- ["A drawing of a drawbayc ape dressed as a cowboy", "", 12, 75],
45
- ["A drawing of a drawbayc ape dressed as a clown", "", 12, 75],
46
- ["A drawing of a drawbayc ape dressed as a turtle", "", 12, 75],
47
 
48
  ]
49
 
@@ -97,7 +97,7 @@ with gr.Blocks() as demo:
97
  with gr.Row():
98
  with gr.Column():
99
  prompt_pos = gr.Textbox(label="Positive Prompt", value="a drawing of drawbayc ape as an astronaut")
100
- prompt_neg = gr.Textbox(label="Negative Prompt", value="bad anatomy, blurry")
101
 
102
  prompt_gs = gr.Number(label='Guidance scale', value=12)
103
  prompt_steps = gr.Slider(label="Inference Steps",value=50)
 
41
  title = "KerasCV Stable Diffusion Demo on images of Bored Apes."
42
  description = "This is a dreambooth model fine-tuned on images the NFT collection of the Bored Ape Yacht Club. To try it, input the concept with `drawbayc ape`."
43
  examples=[
44
+ ["A drawing of a drawbayc ape dressed as a cowboy", "bad anatomy, blurry, ugly, deformed, disfigured", 12, 75],
45
+ ["A drawing of a drawbayc ape dressed as a clown", "bad anatomy, blurry, ugly, deformed, disfigured", 12, 75],
46
+ ["A drawing of a drawbayc ape dressed as a turtle", "bad anatomy, blurry, ugly, deformed, disfigured", 12, 75],
47
 
48
  ]
49
 
 
97
  with gr.Row():
98
  with gr.Column():
99
  prompt_pos = gr.Textbox(label="Positive Prompt", value="a drawing of drawbayc ape as an astronaut")
100
+ prompt_neg = gr.Textbox(label="Negative Prompt", value="bad anatomy, blurry, ugly, deformed, disfigured")
101
 
102
  prompt_gs = gr.Number(label='Guidance scale', value=12)
103
  prompt_steps = gr.Slider(label="Inference Steps",value=50)