Spaces:
Runtime error
Runtime error
Commit
·
9a6688c
1
Parent(s):
01c1744
first commit
Browse files
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"
|
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
|