GDavila commited on
Commit
6f7b676
·
1 Parent(s): 9984749

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -88,8 +88,9 @@ if user_image_object is not None:
88
 
89
  '''Show some demos: '''
90
 
91
- for ii in img_array[::11]:
92
- st.image( img_array[ii] )
 
93
 
94
 
95
 
 
88
 
89
  '''Show some demos: '''
90
 
91
+ if len(img_array) > 7:
92
+ for ii in [1, 4, 7]:
93
+ st.image( img_array[ii] )
94
 
95
 
96