Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|