sashavor commited on
Commit
7e69495
1 Parent(s): b9f612c

adding some context

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,10 +21,10 @@ seeds = [46267, 48040, 51237, 54325, 60884, 64830, 67031, 72935, 92118, 93109]
21
 
22
  with gr.Blocks() as demo:
23
  gr.Markdown("# Stable Diffusion Explorer")
24
- gr.Markdown("## TODO")
25
  seed_choice = gr.State(0)
26
  seed_choice = random.choice(seeds)
27
- print(seed_choice)
28
  with gr.Row():
29
  with gr.Column():
30
  choice1 = gr.Dropdown(categories, label = "Choose a first category", interactive=True)
 
21
 
22
  with gr.Blocks() as demo:
23
  gr.Markdown("# Stable Diffusion Explorer")
24
+ gr.Markdown("## Choose from the prompts below to explore the way in which the Stable Diffusion model encodes societal biases")
25
  seed_choice = gr.State(0)
26
  seed_choice = random.choice(seeds)
27
+ print("Seed choice is: " + str(seed_choice))
28
  with gr.Row():
29
  with gr.Column():
30
  choice1 = gr.Dropdown(categories, label = "Choose a first category", interactive=True)