tombetthauser commited on
Commit
abae662
Β·
1 Parent(s): cdcd811

Shortened names

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -195,7 +195,7 @@ def get_models_text():
195
 
196
  with gr.Blocks(css=".gradio-container {max-width: 650px}") as advanced_tab:
197
  gr.Markdown('''
198
- # Advanced Prompting
199
 
200
  Freely prompt artist models / concepts with open controls for size, inference steps, seed number etc. Text prompts need to manually include artist concept / model tokens which can be found in the welcome tab and beta tab (ie "an alien in the style of <ahx-model-12>"). You can also mix and match models (ie "a landscape in the style of <ahx-model-14> and <ahx-beta-4307f62>>"). To see example images or for more information see the links below.
201
  <br><br>
@@ -311,7 +311,7 @@ rand_model_int = 2
311
 
312
  with gr.Blocks(css=".gradio-container {max-width: 650px}") as new_welcome:
313
  gr.Markdown('''
314
- # Stable Diffusion Artist Collaborations
315
 
316
  Use the dropdown below to select models / concepts trained on images chosen by collaborating artists. Prompt concepts with any text. To see example images or for more information on the project see the main project page or the discord community linked below. The images you generate here are not recorded unless you save them, they belong to everyone and no one.
317
  <br><br>
@@ -338,7 +338,7 @@ with gr.Blocks(css=".gradio-container {max-width: 650px}") as new_welcome:
338
 
339
  with gr.Blocks() as beta:
340
  gr.Markdown('''
341
- # Beta Models / Concepts
342
 
343
  This tool allows you to test out newly trained beta concepts trained by artists. To add your own beta concept see the link below. This uses free access to Google's GPUs but will require a password / key that you can get from the discord server. After a new concept / model is trained it will be automatically added to this tab when the app is redeployed.
344
  <br><br>
@@ -364,5 +364,5 @@ with gr.Blocks() as beta:
364
 
365
  # ----- Launch Tabs -----------------------------------------------------------------
366
 
367
- tabbed_interface = gr.TabbedInterface([new_welcome, advanced_tab, beta], ["Welcome", "Advanced Prompting", "Beta Concepts"])
368
  tabbed_interface.launch()
 
195
 
196
  with gr.Blocks(css=".gradio-container {max-width: 650px}") as advanced_tab:
197
  gr.Markdown('''
198
+ ## Advanced Prompting
199
 
200
  Freely prompt artist models / concepts with open controls for size, inference steps, seed number etc. Text prompts need to manually include artist concept / model tokens which can be found in the welcome tab and beta tab (ie "an alien in the style of <ahx-model-12>"). You can also mix and match models (ie "a landscape in the style of <ahx-model-14> and <ahx-beta-4307f62>>"). To see example images or for more information see the links below.
201
  <br><br>
 
311
 
312
  with gr.Blocks(css=".gradio-container {max-width: 650px}") as new_welcome:
313
  gr.Markdown('''
314
+ ## Stable Diffusion Artist Collaborations
315
 
316
  Use the dropdown below to select models / concepts trained on images chosen by collaborating artists. Prompt concepts with any text. To see example images or for more information on the project see the main project page or the discord community linked below. The images you generate here are not recorded unless you save them, they belong to everyone and no one.
317
  <br><br>
 
338
 
339
  with gr.Blocks() as beta:
340
  gr.Markdown('''
341
+ ## Beta Models / Concepts
342
 
343
  This tool allows you to test out newly trained beta concepts trained by artists. To add your own beta concept see the link below. This uses free access to Google's GPUs but will require a password / key that you can get from the discord server. After a new concept / model is trained it will be automatically added to this tab when the app is redeployed.
344
  <br><br>
 
364
 
365
  # ----- Launch Tabs -----------------------------------------------------------------
366
 
367
+ tabbed_interface = gr.TabbedInterface([new_welcome, advanced_tab, beta], ["Welcome", "Advanced", "Beta"])
368
  tabbed_interface.launch()