Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,12 +33,12 @@ with gr.Blocks() as demo:
|
|
33 |
for img in wordcloud_images:
|
34 |
gr.Image(img, label=img.split('.')[0])
|
35 |
|
36 |
-
gr.Markdown("###
|
37 |
with gr.Row():
|
38 |
for img in scrambled_images:
|
39 |
gr.Image(img, label=img.split('/')[-1])
|
40 |
|
41 |
-
gr.Markdown("###
|
42 |
image_inputs = [gr.Dropdown(choices=scrambled_images, label=f"Image {i+1}") for i in range(6)]
|
43 |
|
44 |
result = gr.Textbox(label="Feedback", interactive=False)
|
|
|
33 |
for img in wordcloud_images:
|
34 |
gr.Image(img, label=img.split('.')[0])
|
35 |
|
36 |
+
gr.Markdown("### Here are the six scrambled images of the story:")
|
37 |
with gr.Row():
|
38 |
for img in scrambled_images:
|
39 |
gr.Image(img, label=img.split('/')[-1])
|
40 |
|
41 |
+
gr.Markdown("### Now, can you select the images in the correct order?")
|
42 |
image_inputs = [gr.Dropdown(choices=scrambled_images, label=f"Image {i+1}") for i in range(6)]
|
43 |
|
44 |
result = gr.Textbox(label="Feedback", interactive=False)
|