jiehou commited on
Commit
cba5895
·
1 Parent(s): 7c40250

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 = 3)
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))})