Manjushri commited on
Commit
3bd1a7a
1 Parent(s): cb65275

Update app.py

Browse files

Fixed Minor Typo in Labels

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -48,8 +48,8 @@ def genie (prompt, negative_prompt, height, width, scale, steps, seed, upscaler)
48
  torch.cuda.empty_cache()
49
  return (image, image)
50
 
51
- gr.Interface(fn=genie, inputs=[gr.Textbox(label='What you want the AI to generate.<b> 77 Token Limit. A Token is Any Word, Number, Symbol, or Punctuation. Everything Over 77 Will Be Truncated!'),
52
- gr.Textbox(label='What you Do Not want the AI to generate. <b>77 Token Limit'),
53
  gr.Slider(512, 1024, 768, step=128, label='Height'),
54
  gr.Slider(512, 1024, 768, step=128, label='Width'),
55
  gr.Slider(1, 15, 10, step=.25, label='Guidance Scale: How Closely the AI follows the Prompt'),
 
48
  torch.cuda.empty_cache()
49
  return (image, image)
50
 
51
+ gr.Interface(fn=genie, inputs=[gr.Textbox(label='What you want the AI to generate.<b> 77 Token Limit. A Token is Any Word, Number, Symbol, or Punctuation. Everything Over 77 Will Be Truncated!</b>'),
52
+ gr.Textbox(label='What you Do Not want the AI to generate. <b>77 Token Limit</b>'),
53
  gr.Slider(512, 1024, 768, step=128, label='Height'),
54
  gr.Slider(512, 1024, 768, step=128, label='Width'),
55
  gr.Slider(1, 15, 10, step=.25, label='Guidance Scale: How Closely the AI follows the Prompt'),