Pythonによる機械学習初心者です。
おそらく基本的なところでつまずいていますが、以下のエラーの解決策を教えて頂けないでしょうか?
Python
1import pandas as pd 2import GPy 3 4get_train_df = pd.read_excel('dataset.xlsx',sheet_name='Dataset') 5train_df = get_train_df.set_index('case') 6 7X = train_df[['red', 'blue', 'yellow', 'green']] 8Y = train_df['flower'] 9kernel = GPy.kern.RBF(input_dim=1) 10model = GPy.models.GPRegression(X, Y) 11model.optimize()
以下がエラーコードです。
Python
1 2 File "C:\Users\Na\Anaconda3\lib\site-packages\GPy\core\gp.py", line 48, in __init__ 3 assert Y.ndim == 2 4 5AssertionError
回答2件
あなたの回答
tips
プレビュー