awacke1 commited on
Commit
0ddf487
1 Parent(s): b7f7a2e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ df['url'] = df['url'].apply(lambda x: '<a href= "' + str(x) + '" target="_blank"
6
  df = df[[ 'url', 'prompt']]
7
 
8
  def display_df():
9
- df_images = df.head(rowcount=(100,'fixed'))
10
  return df_images
11
 
12
  def display_next100(dataframe, end):
 
6
  df = df[[ 'url', 'prompt']]
7
 
8
  def display_df():
9
+ df_images = df.head(100)
10
  return df_images
11
 
12
  def display_next100(dataframe, end):