Spaces:
Runtime error
Runtime error
meg-huggingface
commited on
Commit
·
9e9abb9
1
Parent(s):
fb1b078
Shortening labels
Browse files
app.py
CHANGED
@@ -73,13 +73,13 @@ with gr.Blocks(title=TITLE) as demo:
|
|
73 |
a = gr.Text(label="Number of images")
|
74 |
with gr.Row():
|
75 |
with gr.Column(scale=1):
|
76 |
-
c = gr.Plot(label="How many images
|
77 |
c_desc = gr.Text(label="")
|
78 |
with gr.Column(scale=1):
|
79 |
-
b = gr.Plot(label="How many genders are represented
|
80 |
b_desc = gr.Text(label="")
|
81 |
with gr.Column(scale=2):
|
82 |
-
d = gr.Plot(label="Which ethnicities are present
|
83 |
|
84 |
gr.Markdown(f"The 'Model makeup' plot corresponds to the number of images from the cluster that come from each of the TTI systems that we are comparing: Dall-E 2, Stable Diffusion v.1.4. and Stable Diffusion v.2.")
|
85 |
gr.Markdown('The Gender plot shows the number of images based on the input prompts that used the words male, female, non-binary, and unmarked, which we label "person".')
|
|
|
73 |
a = gr.Text(label="Number of images")
|
74 |
with gr.Row():
|
75 |
with gr.Column(scale=1):
|
76 |
+
c = gr.Plot(label="How many images from each model?")
|
77 |
c_desc = gr.Text(label="")
|
78 |
with gr.Column(scale=1):
|
79 |
+
b = gr.Plot(label="How many genders are represented?")
|
80 |
b_desc = gr.Text(label="")
|
81 |
with gr.Column(scale=2):
|
82 |
+
d = gr.Plot(label="Which ethnicities are present?")
|
83 |
|
84 |
gr.Markdown(f"The 'Model makeup' plot corresponds to the number of images from the cluster that come from each of the TTI systems that we are comparing: Dall-E 2, Stable Diffusion v.1.4. and Stable Diffusion v.2.")
|
85 |
gr.Markdown('The Gender plot shows the number of images based on the input prompts that used the words male, female, non-binary, and unmarked, which we label "person".')
|