Python - Kriging (Gaussian Process) in scikit_learn

前端 未结 2 469
旧时难觅i
旧时难觅i 2021-01-05 04:25

I am considering using this method to interpolate some 3D points I have. As an input I have atmospheric concentrations of a gas at various elevations over an area. The data

2条回答
  •  情歌与酒
    2021-01-05 05:29

    Yes, you can definitely do that in scikit_learn.

    In fact, it is a basic feature of kriging/Gaussian process regression that you can use anisotropic covariance kernels.

    As it is precised in the manual (cited below) ou can either set the parameters of the covariance yourself or estimate them. And you can choose either having all parameters equal or all different.

    theta0 : double array_like, optional An array with shape (n_features, ) or (1, ). The parameters in the autocorrelation model. If thetaL and thetaU are also specified, theta0 is considered as the starting point for the maximum likelihood estimation of the best set of parameters. Default assumes isotropic autocorrelation model with theta0 = 1e-1.

提交回复
热议问题