(values)
| 144 | |
| 145 | |
| 146 | def get_metric_statistics(values): |
| 147 | mean = np.mean(values, axis=0) |
| 148 | std = np.std(values, axis=0) |
| 149 | conf_interval = 1.96 * std / np.sqrt(replication_times) |
| 150 | return mean, conf_interval |
| 151 | |
| 152 | |
| 153 | def evaluation(log_file): |