ysharma HF staff commited on
Commit
e871566
1 Parent(s): 3a40f3f

update initial dataframe fetch

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ df['source'] = df['source'].apply(lambda x: str(x))
11
  df = df[[ 'url', 'prompt', 'seed', 'width', 'height', 'steps', 'source']]
12
 
13
  def display_df():
14
- df_images = df.head()
15
  return df_images
16
 
17
  def display_next10(dataframe, end):
11
  df = df[[ 'url', 'prompt', 'seed', 'width', 'height', 'steps', 'source']]
12
 
13
  def display_df():
14
+ df_images = df.head(10)
15
  return df_images
16
 
17
  def display_next10(dataframe, end):