BennoKrojer commited on
Commit
168580e
1 Parent(s): 6be8cad
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,5 +10,5 @@ images = [prefix+'/MSR-VTT-videoTestVideo_video7016-shot1_2/'+i for i in set2ids
10
 
11
  index= int(st.number_input('Image Index from 0 to 9', value=0, min_value=0, max_value=len(images)-1))
12
 
13
- st.image(prefix+'/MSR-VTT-videoTestVideo_video7016-shot1_2/'+images[index], use_column_width=True)
14
  st.image(images, width=100, caption=list(range(10)))
 
10
 
11
  index= int(st.number_input('Image Index from 0 to 9', value=0, min_value=0, max_value=len(images)-1))
12
 
13
+ st.image(images[index], use_column_width=True)
14
  st.image(images, width=100, caption=list(range(10)))