We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaf3c2a commit c81f9b7Copy full SHA for c81f9b7
crates/ego/src/solver/solver_impl.rs
@@ -126,7 +126,7 @@ where
126
if make_clustering
127
/* init || recluster */
128
{
129
- info!("{} Clustering and training...", model_name);
+ info!("{} clustering and training...", model_name);
130
let model = builder
131
.train(xt.view(), yt.view())
132
.expect("GP training failure");
@@ -448,7 +448,7 @@ where
448
};
449
let make_clustering = (init && i == 0) || recluster;
450
let optimize_theta =
451
- (iter as usize * self.config.q_points) % (self.config.n_optmod) == 0;
+ (iter as usize * self.config.q_points + i) % (self.config.n_optmod) == 0;
452
self.make_clustered_surrogate(
453
&name,
454
&xt,
0 commit comments