【发布时间】:2019-04-11 09:15:01
【问题描述】:
您好,我想知道是否有人知道如何将以下 scikit-learn 0.17 版代码转换为 0.20 版
from sklearn.gaussian_process import GaussianProcess
gp = GaussianProcess(corr='cubic', theta0=1e-2, thetaL=1e-4, thetaU=1E-1,
random_start=100)
xfit = np.linspace(0, 10, 1000)
yfit, MSE = gp.predict(xfit[:, np.newaxis], eval_MSE=True)
提前谢谢你!
【问题讨论】:
标签: scikit-learn gaussian