Skip to content

Commit 796d67f

Browse files
committed
Merge pull request scikit-learn#3588 from tejesh95/patch-1
Update gaussian_process.py
2 parents 4b82379 + 8597cc4 commit 796d67f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sklearn/gaussian_process/gaussian_process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def fit(self, X, y):
299299
if (np.min(np.sum(D, axis=1)) == 0.
300300
and self.corr != correlation.pure_nugget):
301301
raise Exception("Multiple input features cannot have the same"
302-
" value.")
302+
" target value.")
303303

304304
# Regression matrix and parameters
305305
F = self.regr(X)

0 commit comments

Comments
 (0)