Skip to content

Commit

Permalink
fix again. grrr...
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Jun 13, 2019
1 parent 4dfcfb7 commit 3c059e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smt/extensions/mfk.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def predict_variances_all_levels(self, X):
g = self._regression_types[self.options['rho_regr']](X)
dx = manhattan_distances(X, Y=self.X_norma_all[i], sum_over_features=False)
d = self._componentwise_distance(dx)
r_ = self.options['corr'](self.optimal_theta[i], d).reshape(n_eval, self.nt_all[i])
r_ = self._correlation_types[self.options['corr']](self.optimal_theta[i], d).reshape(n_eval, self.nt_all[i])
f = np.vstack((g.T*mu[:,i-1], f0.T))

Ft = solve_triangular(C, F, lower=True)
Expand Down

0 comments on commit 3c059e0

Please sign in to comment.