生じた問題
Pythonデータサンスハンドブック(第3刷)で勉強をしている中で、
うまく動作しないコードがあります。
エラーメッセージでは、importできないと出てきました。
エラーメッセージ
ImportError: cannot import name 'GaussianProcess' from 'sklearn.gaussian_process' (…略…)
該当のソースコード
Python
1import numpy as np 2from sklearn.gaussian_process import GaussianProcess 3 4 5model = lambda x: x*np.sin(x) 6xdata = np.array([1,3,5,6,8]) 7ydata = model(xdata) 8 9gp = GaussianProcess(corr = 'cubic', theta0 = 1e-2, thetaL=1e-4, thetaU=1E-1, random_start=100) 10gp.fit(xdata[:,np.newaxis], ydata) 11 12xfit = np.linspace(0,10,1000) 13yfit, MSE = gp.predict(xfit[:,np.newaxis], eval_MSE = True) 14dyfit = 2*np.sqrt(MSE)
試したこと
scikit-learnのページ(https://scikit-learn.org/stable/modules/gaussian_process.html#gaussian-process-regression-gpr)
を見ると、GaussianProcessというものは見当たらないため、本文中の内容は過去のバージョンのものを
元にしており、現在のバージョンでは別の名称(GaussianProcessRegressorなど)に変更されてしまったのかと考えました。
その解釈であっているでしょうか。
もしその場合、ライブラリの更新の変遷などはどこかで調べることができるのでしょうか。
補足情報(FW/ツールのバージョンなど)
Python Ver3.7.1
scikit-learn Ver.0.20.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/29 06:23