yonatanbitton commited on
Commit
9a6688c
·
1 Parent(s): 01c1744

first commit

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -44,8 +44,8 @@ def display_next(dataframe, end):
44
  start = 0
45
  end = LINES_NUMBER
46
  df = df.sample(frac=1)
47
- print(f"Shuffeling")
48
- print(f"end: {end},start: {start}")
49
  df_images = df.iloc[start:end]
50
  assert len(df_images) == LINES_NUMBER
51
  return df_images, end
 
44
  start = 0
45
  end = LINES_NUMBER
46
  df = df.sample(frac=1)
47
+ print(f"Shuffle")
48
+ # print(f"end: {end},start: {start}")
49
  df_images = df.iloc[start:end]
50
  assert len(df_images) == LINES_NUMBER
51
  return df_images, end