jiehou commited on
Commit
dda7750
·
1 Parent(s): 5089e0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -152,7 +152,7 @@ def get_example():
152
 
153
 
154
  pd_all = pd.concat([pd_class1, pd_class2]).reset_index(drop=True)
155
- pd_all = pd_all.sample(frac=1)
156
  return pd_all.to_numpy()
157
 
158
 
 
152
 
153
 
154
  pd_all = pd.concat([pd_class1, pd_class2]).reset_index(drop=True)
155
+ pd_all = pd_all.sample(frac=1).reset_index(drop=True)
156
  return pd_all.to_numpy()
157
 
158