bugfix
This commit is contained in:
parent
9020d7ff31
commit
05d1967cd5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue