fffiloni commited on
Commit
0e5d8aa
1 Parent(s): c9e9c93

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -66,7 +66,7 @@ title = """
66
  CLIP Interrogator 2.1
67
  </h1>
68
  </div>
69
- <p style="margin-bottom: 10px;font-size: 16px;font-weight: 100;line-height: 1.5em;">
70
  Want to figure out what a good prompt might be to create new images like an existing one?
71
  <br />The CLIP Interrogator is here to get you answers!
72
  <br />This version is specialized for producing nice prompts for use with Stable Diffusion 2.0 using the ViT-H-14 OpenCLIP model!
@@ -143,4 +143,4 @@ with gr.Blocks(css=css) as block:
143
  submit_btn.click(fn=inference, inputs=[input_image,mode_input,flavor_input], outputs=[output_text, share_button, community_icon, loading_icon])
144
  share_button.click(None, [], [], _js=share_js)
145
 
146
- block.queue(max_size=32).launch(show_api=False)
66
  CLIP Interrogator 2.1
67
  </h1>
68
  </div>
69
+ <p style="margin-bottom: 10px;font-size: 94%;font-weight: 100;line-height: 1.5em;">
70
  Want to figure out what a good prompt might be to create new images like an existing one?
71
  <br />The CLIP Interrogator is here to get you answers!
72
  <br />This version is specialized for producing nice prompts for use with Stable Diffusion 2.0 using the ViT-H-14 OpenCLIP model!
143
  submit_btn.click(fn=inference, inputs=[input_image,mode_input,flavor_input], outputs=[output_text, share_button, community_icon, loading_icon])
144
  share_button.click(None, [], [], _js=share_js)
145
 
146
+ block.queue(max_size=32,concurrency_count=20).launch(show_api=False)