This commit is contained in:
Alejandro Moreo Fernandez 2024-09-25 11:29:12 +02:00
parent 05d1967cd5
commit ac4f81918e
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ class KDEyMLauto2(KDEyML):
return loss_accum return loss_accum
bounds = [tuple((0, 1))] bounds = [tuple((0.0001, np.log10(0.2)))]
init_bandwidth = 0.1 init_bandwidth = 0.1
r = optimize.minimize(neg_loglikelihood_band_, x0=[init_bandwidth], method='SLSQP', bounds=bounds) r = optimize.minimize(neg_loglikelihood_band_, x0=[init_bandwidth], method='SLSQP', bounds=bounds)
best_band = r.x[0] best_band = r.x[0]