Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -278,7 +278,7 @@ def get_example():
|
|
| 278 |
|
| 279 |
import numpy as np
|
| 280 |
import pandas as pd
|
| 281 |
-
np.random.seed(seed =
|
| 282 |
|
| 283 |
N=100
|
| 284 |
pd_class1 = pd.DataFrame({'Sample Index': [i for i in range(1,int(N/4)+1)],'Predicted Prob': np.random.uniform(0.6,1,int(N/4)), 'Label (Y)': np.repeat(1,int(N/4))})
|
|
|
|
| 278 |
|
| 279 |
import numpy as np
|
| 280 |
import pandas as pd
|
| 281 |
+
np.random.seed(seed = 42)
|
| 282 |
|
| 283 |
N=100
|
| 284 |
pd_class1 = pd.DataFrame({'Sample Index': [i for i in range(1,int(N/4)+1)],'Predicted Prob': np.random.uniform(0.6,1,int(N/4)), 'Label (Y)': np.repeat(1,int(N/4))})
|