(params)
| 24 | return E + (A * 1e9 / (param_list * (np.log(p_list) * k + 1))) ** alpha |
| 25 | |
| 26 | def objective_function(params): |
| 27 | pred = pred_loss(params) |
| 28 | return huber_loss(np.log(loss_list), np.log(pred)) |
| 29 | |
| 30 | best_param = None |
| 31 | best_func = 1000000 |
nothing calls this directly
no test coverage detected