Open statkwon opened 2 months ago
I created this PR to fix the code for calculating log standard error.
Before
log_mu, log_std = np.log(mean_score), np.log(std_err)
After
log_mu = np.log(mean_score) log_std = np.std(np.log(score)) / np.sqrt(len(score))
I created this PR to fix the code for calculating log standard error.
Before
After