我正在生成random.uniform(low=0.0, high=100.0, size=(150,150))
數組。
我將其輸入到生成X
,x
和y
的函數中。sklearn.gaussian_process fit()不適用於大於100的數組大小
但是,如果隨機測試矩陣大於100,我會得到下面的錯誤。
我曾嘗試玩θ的值。
有沒有人有這個問題?這是一個錯誤?
我正在使用python2.6和scikit-learn-0.10。我應該嘗試python3?
歡迎任何建議或意見。
謝謝。
gp.fit(XKrn, yKrn)
File "/usr/lib/python2.6/scikit_learn-0.10_git-py2.6-linux-x86_64.egg/sklearn/gaussian_process/gaussian_process.py", line 258, in fit
raise ValueError("X and y must have the same number of rows.")
ValueError: X and y must have the same number of rows.