bori0824 commited on
Commit
2352d65
·
verified ·
1 Parent(s): ff01a7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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("### Now, 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("### 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)
 
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)