This commit is contained in:
Alejandro Moreo Fernandez 2024-09-25 11:24:46 +02:00
parent 9020d7ff31
commit 05d1967cd5
1 changed files with 2 additions and 2 deletions

View File

@ -315,7 +315,7 @@ class KDEyMLauto2(KDEyML):
return loss_accum
bounds = [tuple(0, 1)]
bounds = [tuple((0, 1))]
init_bandwidth = 0.1
r = optimize.minimize(neg_loglikelihood_band_, x0=[init_bandwidth], method='SLSQP', bounds=bounds)
best_band = r.x[0]
@ -348,5 +348,5 @@ class KDEyMLauto2(KDEyML):
best_loss_val = loss_accum
best_band = bandwidth
print(f'found bandwidth={best_band:.4f} (loss_val={best_loss_val:.5f})')
print(f'found bandwidth={best_band:.4f}') # (loss_val={best_loss_val:.5f})')
self.bandwidth_ = best_band